gpt4 book ai didi

r - 同一图上不同行的图

转载 作者:行者123 更新时间:2023-12-02 01:45:09 24 4
gpt4 key购买 nike

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

我想用 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

最佳答案

使用 points()向现有绘图添加点

关于r - 同一图上不同行的图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26120976/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com