我是一个数据集,其矩阵的分隔符如下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
答案 0 :(得分:1)
正如Roland所说,ggplot2需要一个数据帧:
GC_percent <- as.data.frame(GC_percent)
qplot(GC_percent, geom="histogram")