在没有变换数据帧的情况下在R中绘制相关矩阵的简单方法

时间:2017-09-24 22:40:52

标签: 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

我的目标是绘制:enter image description here

似乎有很多方法需要将数据框转换为使用过的corrplotggcorrplot。有没有更简单的方法将数据帧绘制到相关矩阵而不转换数据帧?

1 个答案:

答案 0 :(得分:0)

您提供的样本数据似乎不需要进行大量转换。

library(corrplot)
corrplot(cor(mydata), method="color", outline="White")

Corrplot