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