如何在R中的一张图中以点和线的形式绘制两个数据集?
我有两个数据集(每个数据集有两列数据)。我想使用 R 将两个数据集 xyplot 绘制成一张图,其中一个是点形式,一个是平滑线格式。
你介意教我怎么做吗?谢谢。
I have two dataset (each has two columns of data). I want to use R to xyplot both dataset into one figure, while one is in point form, one is in smooth line format.
Could you mind to teach me how to do so? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说:
In general:
您有多种选择:
1) 将
plot
与“o”(overplot)类型一起使用2) 一般来说,正如@Milktrader 所说,您可以使用
new=TRUE
,例如:3) 使用
points
4) 使用
split.screen
或layout
分割屏幕当然还有很多其他的......
You have several options:
1) Use
plot
with the "o" (overplot) type2) In general, as @Milktrader said, you can call plot twice with
new=TRUE
, for instance:3) Use
points
4) Split the screen with
split.screen
orlayout
And there are surely many others...