2013-10-23 51 views
0

這是我的問題。 我想做一個散點圖,其中(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種不同的治療。 非常感謝!

+0

你找到幾種可能性[這裏](http://stackoverflow.com/questions/10519873/how-to-create-a-line-plot-with-groups-in-base -R-不-環路) – Henrik

回答

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