将另一个 data.frame 中的一行添加到 qplot

发布于 2024-10-22 11:27:24 字数 350 浏览 1 评论 0原文

是否可以在现有绘图中添加一条线(例如附加时间序列)? 我知道如何添加水平或垂直线,但如何从其他 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不美如何 2024-10-29 11:27:24

通过使用 ggplot() 而不是 qplot(),您可以获得更大的灵活性。
这是使用两个数据集的最小示例:

d1 <- data.frame(x1=rep(1:10,3), y1=rnorm(10*3), g1=gl(3,10,labels=letters[1:3]))
d2 <- data.frame(x2=rep(1:10,3), y2=rnorm(10*3), g2=gl(3,10, labels=letters[4:6]))

ggplot() + 
  geom_line(aes(x1, y1, colour=g1), d1) +  
  geom_line(aes(x2, y2, colour=g2), d2)

by using ggplot() instead of qplot(), you can have more flexibility.
here is a minimal example using two datasets:

d1 <- data.frame(x1=rep(1:10,3), y1=rnorm(10*3), g1=gl(3,10,labels=letters[1:3]))
d2 <- data.frame(x2=rep(1:10,3), y2=rnorm(10*3), g2=gl(3,10, labels=letters[4:6]))

ggplot() + 
  geom_line(aes(x1, y1, colour=g1), d1) +  
  geom_line(aes(x2, y2, colour=g2), d2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文