R语言可视化之箱图

时间:2023-02-03 17:15:45

lattice包中的箱图

bwplot(Species~Petal.Length,data=iris)

R语言可视化之箱图

拓展:分位箱图

library(Hmisc)
bwplot(Species~Petal.Length,data=iris,panel=panel.bpplot,probs=seq(0.01,0.49,by=0.01),datadensity=T)

datadensity的作用是添加小提琴中的小竖线

probs的作用是更细化小提琴的外边界

 R语言可视化之箱图 

#将连续变量离散化
Sepal.Len=equal.count(na.omit(iris$Sepal.Length),number=4,overlap=1/5)
stripplot(Species~Petal.Length|Sepal.Len,data=iris)

R语言可视化之箱图