-
ggplot2로 상자그림 작성하기R 2017. 10. 27. 14:32
install.packages("ggplot2")
library(ggplot2)
# 1. 일변량 양적 자료에 대한 상자그림
ggplot2::ggplot(data = diamonds, aes(x = "price", y = price) +
geom_boxplot()# 2. 집단별(일변량 질적자료) 상자그림
ggplot2::ggplot(data = diamonds, aes(x = cut, y = price) +
geom_boxplot()# 3. 집단별(이변량 질적자료) 상자그림
ggplot2::ggplot(data = diamonds, aes(x = interaction(cut, color), y = price) +geom_boxplot()
'R' 카테고리의 다른 글
R Graphics (0) 2017.11.05 막대의 높이를 알려주는 레이블 추가하기 (0) 2017.10.27 ggplot2의 Layers (0) 2017.10.27 Marginal Histogram / Boxplot (0) 2017.10.22 ggplot2 패키지로 산점도 작성하기 (0) 2017.10.22