绘制多个障碍物。在R中使用ggplot2的1个变量

时间:2014-02-14 14:08:01

标签: r ggplot2 histogram

我是一个数据集,其矩阵的分隔符如下multiple obs. of 1 variables

>GC_percent
[1,] 0.4835822
[2,] 0.4782782
[...]
[5622,] 0.4968492
[5623,] 0.5076531

我会用这个绘制直方图:

qplot(GC_percent, geom="histogram")

但不可避免的是它不起作用:

Error: ggplot2 doesn't know how to deal with data of class matrix

1 个答案:

答案 0 :(得分:1)

正如Roland所说,ggplot2需要一个数据帧:

GC_percent <- as.data.frame(GC_percent)
qplot(GC_percent, geom="histogram")