将另一个 data.frame 中的一行添加到 qplot
是否可以在现有绘图中添加一条线(例如附加时间序列)? 我知道如何添加水平或垂直线,但如何从其他 data.frames 添加?
q_myplot<-qplot(datefield,myvalue,data=mydf,geom=c("line"),colour=category) +opts(axis.title.x = theme_blank()) + scale_x_date(major="2 years")
是我的基本情节,显示按类别分组的三个不同的时间序列。有没有办法在绘图中添加另一条线,例如通过使用图层?当然,我可以使用另一个类别将这些附加数据添加到 mydf 中,但我想知道是否有更好的主意。
Is it possible to add a line (such as an additional time series) to an already existing plot?
I know how to add horizontal or vertical lines, but how can I add from other data.frames?
q_myplot<-qplot(datefield,myvalue,data=mydf,geom=c("line"),colour=category) +opts(axis.title.x = theme_blank()) + scale_x_date(major="2 years")
is my basic plot, showing three different time series grouped by category. Is there a way to add another line to the plot for example by using layers? Of course I could add this additional data to mydf using another category, but I wonder if there's a better idea out there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用 ggplot() 而不是 qplot(),您可以获得更大的灵活性。
这是使用两个数据集的最小示例:
by using ggplot() instead of qplot(), you can have more flexibility.
here is a minimal example using two datasets: