gpt4 book ai didi

r - GGally::ggpairs 在绘制相关系数时没有网格线

转载 作者:行者123 更新时间:2023-12-03 14:59:03 25 4
gpt4 key购买 nike

GGally::ggpairs绘制漂亮的图表,如下所示。我唯一想进一步完善它的是删除图上部的所有网格线,其中是相关系数。也可以在每个上图周围绘制矩形。

library("GGally")
data(iris)
ggpairs(iris[, 1:4], lower=list(continuous="smooth", params=c(colour="blue")),
diag=list(continuous="bar", params=c(colour="blue")),
upper=list(params=list(corSize=6)), axisLabels='show')

enter image description here

最佳答案

退房 this related question和我的 forked repo.使用 assignInNamespace修改 ggally_cor功能如上述问题所示。

唯一需要做的就是修改theme称呼:

  theme(legend.position = "none", 
panel.grid.major = element_blank(),
axis.ticks = element_blank(),
panel.border = element_rect(linetype = "dashed", colour = "black", fill = NA))

enter image description here

关于r - GGally::ggpairs 在绘制相关系数时没有网格线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21810675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com