R로 히스토그램 정렬(x축 범위, 빈 수, 제목, 색상) --- 초보자용 ----
히스토그램 장식 (xlim, breaks, main, col)
히스토그램은 다음과 같이 다양한 방식으로 지정할 수 있습니다.
xlim은 2 열 벡터를 사용하여 범위를 지정합니다. c (xmin. xmax)로 지정합니다.
breaks는 히스토그램을 n-1 개의 bin으로 지정할 수 있습니다.
· 메인은 그래프의 제목을 지정할 수 있습니다.
col에서 색상을 지정할 수 있습니다.
# Put graphs in 3 rows and 1 column
par(mfrow = c(3, 1))
# Histograms for each species using options
hist(iris$Petal.Width [iris$Species == "setosa"],
xlim = c(0, 3),
breaks = 9,
main = "Petal Width for Setosa",
xlab = "",
col = "red")
hist(iris$Petal.Width [iris$Species == "versicolor"],
xlim = c(0, 3),
breaks = 9,
main = "Petal Width for Versicolor",
xlab = "",
col = "purple")
hist(iris$Petal.Width [iris$Species == "virginica"],
xlim = c(0, 3),
breaks = 9,
main = "Petal Width for Virginica",
xlab = "",
col = "blue")
Reference
이 문제에 관하여(R로 히스토그램 정렬(x축 범위, 빈 수, 제목, 색상) --- 초보자용 ----), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/Quantas/items/232c49ac1deb54d9ba95
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
# Put graphs in 3 rows and 1 column
par(mfrow = c(3, 1))
# Histograms for each species using options
hist(iris$Petal.Width [iris$Species == "setosa"],
xlim = c(0, 3),
breaks = 9,
main = "Petal Width for Setosa",
xlab = "",
col = "red")
hist(iris$Petal.Width [iris$Species == "versicolor"],
xlim = c(0, 3),
breaks = 9,
main = "Petal Width for Versicolor",
xlab = "",
col = "purple")
hist(iris$Petal.Width [iris$Species == "virginica"],
xlim = c(0, 3),
breaks = 9,
main = "Petal Width for Virginica",
xlab = "",
col = "blue")
Reference
이 문제에 관하여(R로 히스토그램 정렬(x축 범위, 빈 수, 제목, 색상) --- 초보자용 ----), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Quantas/items/232c49ac1deb54d9ba95텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)