📜  r box plots - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:52:00.712000             🧑  作者: Mango

代码示例1
# Boxplot of MPG by Car Cylinders
boxplot(mpg~cyl,data=mtcars, main="Car Milage Data",
   xlab="Number of Cylinders", ylab="Miles Per Gallon")