Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是SPLOM的忠实粉丝
有谁知道可以支持分类数据箱线图的 SPLOM 包?当你有像“性别”这样的列的散点图时,它看起来真的很奇怪
您可以使用该GGally软件包,它支持很多功能。
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"))