将ggpairs图修改为在ggplot2中看起来像plotmatrix

时间:2014-05-15 07:56:21

标签: r ggally

require(GGally)
data(iris)

ggpairs(dd2, columns = 1:4,
        upper = list(continuous = "points"),
        lower = list(continuous = "cor",params = c(corSize = 10)), 
        diag = list(continuous = "bar"),
        axisLabels = 'show')

enter image description here

有没有办法(1)使面板的背景变白,即类似于ggplot2中的theme_bw()并删除网格线; (2)我可以将标签(即mpg,cyl等)移动到图的顶部和右侧,类似于ggplot2中的plotmatrix的样子; (3)我可以拆下下面板上的Corr并且只显示数字。

我在这里发现了一些发布其中一些内容但他们都提到更改来源的帖子了?

0 个答案:

没有答案