s******e 发帖数: 841 | 1 想在已经生成的图里面再加几组点该怎么实现?用了low-level的points,但是图里面
还是没有加进去
我用的是plot(c,b1,type="b"); points(c,b2,type="b") | m*****s 发帖数: 156 | 2 用points应该可以的
【在 s******e 的大作中提到】 : 想在已经生成的图里面再加几组点该怎么实现?用了low-level的points,但是图里面 : 还是没有加进去 : 我用的是plot(c,b1,type="b"); points(c,b2,type="b")
| s******e 发帖数: 841 | 3 谢谢,可以了,我还是想问一下R里面有没有类似matlab的hold on的语句
【在 m*****s 的大作中提到】 : 用points应该可以的
| p****o 发帖数: 1340 | 4 没有。你看一下你新的点是不是出界了?
【在 s******e 的大作中提到】 : 想在已经生成的图里面再加几组点该怎么实现?用了low-level的points,但是图里面 : 还是没有加进去 : 我用的是plot(c,b1,type="b"); points(c,b2,type="b")
| s******e 发帖数: 841 | 5 谢谢,确实是出界了
【在 p****o 的大作中提到】 : 没有。你看一下你新的点是不是出界了?
| t*****9 发帖数: 19 | 6 if you want to cover another plot on the current plot,
you may consider using
par(new=T)
something like this, search help file.
by the way,"pseudo" is so smart:) |
|