如果我有一个以上的治疗,如何制作散点图?

时间:2013-10-23 22:21:13

标签: r

这是我的问题。 我想制作一个散点图,其中(x,y)对是按行连接的。 我有三种治疗方法A,B和C

A<-c(103.4,102.5,101.4,101.0,98.8)
B<-c(102.9,101.6,101.4,100.3,99.6)
C<-c(103.9,103.1,102.3,100.4,97.6)

这3个变量将在y轴(温度)上绘制 我还有一个x轴变量(分钟)

M<-c(15,30,45,60,75)

我只想知道如何使用不同的线条和符号为3种不同的治疗方法制作情节。 非常感谢!

1 个答案:

答案 0 :(得分:2)

png()  # default file name is "Rplot001.png" in your working directory
matplot(M, cbind(A,B,C), type="b", 
        xlab= "Minutes", ylab=expression(Temperature~degree*F), 
        xlim=range(M)+c(-5,5), ylim=range(c(A,B,C)) +c(-1,1) )
dev.off()
# See ?legend and ?title for further annotation

enter image description here