GGpairs,相关值未对齐
GGpairs, correlation values are not aligned
我正在尝试使用 GGpairs 创建相关矩阵,散点图按组(reg 或 irreg)着色。绘制在上角的相关值未对齐,正如您在此处的图像中看到的,Cor、reg 和 irreg 值未对齐。
我使用的代码是这样的:
ggpairs(data=dat4,
columns=1:5,
title="correlation matrix",
mapping= aes(colour = irregular),
lower = list(
continuous = "smooth",
combo = "facetdensity",
mapping = aes(color = irregular)))
数据在这里:replicatable data
有什么建议吗?谢谢谢谢!
查克
这似乎有效:
ggpairs(data=dat4,
columns=1:5,
title="correlation matrix",
mapping= aes(colour = irregular),
lower = list(
continuous = "smooth",
combo = "facetdensity",
mapping = aes(color = irregular)),
upper = list(continuous = wrap("cor", size = 3, hjust=0.8)))
我正在尝试使用 GGpairs 创建相关矩阵,散点图按组(reg 或 irreg)着色。绘制在上角的相关值未对齐,正如您在此处的图像中看到的,Cor、reg 和 irreg 值未对齐。
我使用的代码是这样的:
ggpairs(data=dat4,
columns=1:5,
title="correlation matrix",
mapping= aes(colour = irregular),
lower = list(
continuous = "smooth",
combo = "facetdensity",
mapping = aes(color = irregular)))
数据在这里:replicatable data
有什么建议吗?谢谢谢谢!
查克
这似乎有效:
ggpairs(data=dat4,
columns=1:5,
title="correlation matrix",
mapping= aes(colour = irregular),
lower = list(
continuous = "smooth",
combo = "facetdensity",
mapping = aes(color = irregular)),
upper = list(continuous = wrap("cor", size = 3, hjust=0.8)))