Scatterplot矩阵与分类数据的箱线图

时间:2012-08-14 19:57:18

标签: r statistics

我是SPLOMs

的粉丝

有没有人知道可以支持分类数据箱图的SPLOM包?当你有像“性别”

这样的列的散点图时,看起来很奇怪

1 个答案:

答案 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"))

enter image description here