boxplot boxplot은 자료의 얼마나 퍼져있는지를 볼 수 있는 효율적인 시각화 기법이다. 또한 이상치 여부를 확인할 때도 사용한다. boxplot(mpg~cyl,data=mtcars, main="Car Milage Data", xlab="Number of Cylinders", ylab="Miles Per Gallon") #두 개의 컬럼을 동시에 쓸 수도 있다. # 만약 하나의 컬럼만 사용하고 싶은 경우, len ~ supp =='VC'도 가능하다 boxplot(len~supp*dose, data=ToothGrowth, notch=TRUE, col=(c("gold","darkgreen")), main="Tooth Growth", xlab="Suppliment and Dose") vioplot #vi..