R/ggplot2 - 数据帧的 Y 轴值
我有三个具有这种结构的数据框(但值不同):
V1 V2
2010-04-30 30
2010-07-31 17
2010-10-02 20
我想在 ggplot2 中制作一个包含 3 条线的折线图,每个数据集一条。问题是我想在 Y 轴上显示相对于每个数据集而不是全局数据集的百分比。
我该怎么做?我应该合并两个数据帧,还是为不同的数据帧调用三次 geom_line() 并更改 Y 值?
I have three dataframes with this structure (but different values):
V1 V2
2010-04-30 30
2010-07-31 17
2010-10-02 20
I want to do a line chart in ggplot2 with 3 lines, one for each dataset. The problem is that i want to display in the Y axis the percentage relative to each dataset and not the global one.
How can i do this? Should i merge the two dataframes, or call three times geom_line() for the different dataframes and change there Y value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有很多方法可以做到这一点,有些可能比这更简洁,但这可以帮助您实现这一目标:
There are lots of ways to do this, some probably pithier than this, but this gets you there: