标签: r plot ggplot2 correlation r-corrplot
我的数据框看起来像:
> head(mydata) V1 V2 V3 1 2 14 0.299 2 2 41 0.284 3 2 71 0.307 4 3 43 0.316 5 3 44 0.366 6 3 84 0.405
我的目标是绘制:
似乎有很多方法需要将数据框转换为使用过的corrplot或ggcorrplot。有没有更简单的方法将数据帧绘制到相关矩阵而不转换数据帧?
corrplot
ggcorrplot
答案 0 :(得分:0)
您提供的样本数据似乎不需要进行大量转换。
library(corrplot) corrplot(cor(mydata), method="color", outline="White")