我尝试了一点GGally包。尤其是 ggpairs 函数。但是,当情节平滑时,我无法弄清楚如何使用 loess 而不是 lm。有任何想法吗?这是我的代码:
require(GGally)
diamonds.samp <- diamonds[sample(1:dim(diamonds)[1],200),]
ggpairs(diamonds.samp[,c(1,5)],
lower = list(continuous = "smooth"),
params = c(method = "loess"),
axisLabels = "show")
谢谢!
PS 与 plotmatrix 函数相比,ggpairs 要慢得多......结果,大多数时候,我只是使用 ggplot2 中的 plotmatrix。