一张桌子。每行都有完整绘图的数据

时间:2013-10-19 10:19:14

标签: r plot apply gridextra

我可以在参数中使用apply()和plot()来绘制每一行吗?如果不是那么在gridextra,(multiplot)我如何使用相同的问题,即包含图表系列的标题和数据的单个表行

数据是

A 1 2 3 4 5
B 1 0 2 0 4
C 2 0 4 0 7

等。 我想要一个多重比较来比较A,B和C.

2 个答案:

答案 0 :(得分:1)

也许您正在寻找matplot功能。

答案 1 :(得分:0)

如果你接受使用ggplot,这是一种很好的方法。假设您的数据是名为data的数据框。然后

library(reshape)
library(ggplot2)
data.melt <- melt(cbind(data, index=1:nrow(data)), id.vars="index")
ggplot(data.melt, aes(y=value, x=index, factor=variable, col=variable)) + geom_point()