同一图表上不同行的图

时间:2014-09-30 12:32:56

标签: r plot

我发现了一个关于绘图的有趣线索,但我对答案不满意。我想在同一个图表上绘制不同数量的行。只是让我有可能添加尽可能多的行。

我想使用glopts库但我对任何其他人都开放。首先,我想将这些行绘制成pdf文件。我想修改的脚本是:

which_rows <- c(12,156,4432) ## I want to choose which row I want to plot

pdf(file='Plots'.pdf)

x <- 1:(ncol(data_plot)-1) ## Can it be changed to use the name of the columns instead of pure numbers ?

for(i in which_rows){
 ## create new pdf page BUT I WANT TO PLOT IT ON THE SAME GRAPH!
  plot(x=x,y=data_plot[i,-1],type='b',main=data_plot[i,1],xlab='columns',ylab='Intensity')
}

# closing pdf
dev.off()

您能否帮我修改此脚本以打印我在同一图表上决定的所有行?如果你告诉我如何使用which_rows2之类的其他行来在这个pdf文件中添加新页面,那将会很棒。

当然每个情节应该有不同的颜色或其他东西。

编辑:

Just one of the plots from my data. I want different colours and plots on the same graph

1 个答案:

答案 0 :(得分:2)

使用points()为现有情节添加点