6

我是SPLOM的忠实粉丝

有谁知道可以支持分类数据箱线图的 SPLOM 包?当你有像“性别”这样的列的散点图时,它看起来真的很奇怪

4

1 回答 1

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

在此处输入图像描述

于 2012-08-14T20:44:22.040 回答