我是SPLOMs
的粉丝有没有人知道可以支持分类数据箱图的SPLOM包?当你有像“性别”
这样的列的散点图时,看起来很奇怪答案 0 :(得分:13)
您可以使用GGally
包,它支持很多功能。
require(GGally)
data(tips)
tips.sample <- tips[ ,c("total_bill", "tip", "day")]
ggpairs(tips.sample, upper = list(continuous = "points", combo = "box"),
lower = list(continuous = "points", combo = "box"))