0

私は R を初めて使用します。R にはグラフをプロットする素晴らしいツールがあると聞きました。次のような 3 つのデータセットがあります。

0.01 2
0.02 3
0.03 4  

file1.txt として

0.015 3
0.024 6 
0.34  56  

file2.txt として。

プロットしたい(たとえば、file1.txtでは、x軸とy軸のエントリです:x = 0.01、y = 2、x = 0.01、y = 3、...)file1.txtとfile2.txtの両方のエントリ両方の曲線が同じグラフにある xy グラフとして。file1.txt と file2.txt の曲線を異なる色で作成できますか? 助けてください!また、file1.txt の曲線に case1 のタグを付ける方法、file2.txt の曲線に case2 などのタグを付ける方法はありますか?

4

1 に答える 1

1

Yes it is possible using plot and then lines for overlaying the graph. Use col for selecting different colors.

Try ?plot, ?lines, ?points

Assuming you have read data into data frames,

file1=read.table(text="x y
0.01 2
0.02 3
0.03 4",header=T)

file2=read.table(text="x y
0.015 3
0.024 6 
0.34  56",header=T)


plot(file1$x, file1$y, col="red", type='l', xlim=c(0,0.5), ylim=c(0,100))
lines(file2$x, file2$y, col="blue")
于 2013-04-21T01:48:42.907 に答える