개요
- R 박스플롯
- R boxplot()
iris 예시
boxplot(iris$Sepal.Width)
boxplot(iris$Sepal.Width, col='red')
boxplot(Sepal.Width ~ Species, iris)
rivers 예시
boxplot(rivers)
boxplot(iris$Sepal.Width)
boxplot(iris$Sepal.Width, col='red')
boxplot(Sepal.Width ~ Species, iris)
boxplot(rivers)