我需要建立一个相关矩阵,并且我正在尝试配置一些参数以适应图表。我正在使用该corrplot
软件包。
我以corrplot
这种方式构建了一个矩阵:
corrplot(cor(d1[,2:14], d1[,2:14]), method=c("color"), bg = "white",
addgrid.col = "gray50", tl.cex=1, type="lower",
tl.col = "black",
col = colorRampPalette(c("red","white","blue"))(100))
我需要在我构建的颜色矩阵内的下部矩阵中显示相关值。我怎么能做到这一点?
相关矩阵的对角线始终为1,所以我想知道是否可以从下矩阵中排除主对角线?
我还想使用星号而不是正方形来显示显着的相关值。例如, ( *
, **
, ***
)。
可能吗?