ggplot2 - stat_summary 是否产生 ..y..?我如何对 y 进行子集化?
- 好奇 - 为什么 stat_summary 不产生任何新变量?访问 y 值似乎非常有用,还是我遗漏了一些东西?
- 如果我使用 stat_summary 来获取给定 x 处所有 y 的平均值,是否有某种方法可以识别新 y(平均值),即所有新 y 的最大值/最小值?假设我想要所有均值的点,但是我想用不同的颜色为最高均值点和最低均值点着色。我该怎么做呢?
- Curious - why doesn't stat_summary produce any new variables? Would seems very useful to have access to the y values, or am I missing something?
- If I used stat_summary to get the mean of all y's at a given x, is there some way to identify the new y (the means) that is the max/min of all new y's? So lets say I want points for all means, but then I want to color the highest mean point and the lowest mean point with different colors. How would I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Brandon 所说,我强烈建议在使用 ggplot 之前自己汇总数据,但是您可以像这样访问汇总的“y”:
虽然这可能很难理解。
As Brandon says, I strongly recommend to summarize data by yourself before using ggplot, but you can access the summarized "y" like this:
maybe this is difficult to understand though.