r - ggplot : remove lines at ribbon edges

标签 r ggplot2

我正在使用 ggplot 来绘制时间过程数据(屏幕上不同对象随时间的注视比例),并希望使用功能区来显示 SE,但功能区本身在顶部和底部边缘,这使得阅读图表变得有点困难。我一直无法弄清楚如何摆脱这些边缘线。这是我的情节代码:

ggplot(d, aes(Time, y, color = Object, fill = Object)) +
  stat_summary(fun.y = "mean", geom = "line", size = 2) +
  stat_summary(fun.data = "mean_se", geom = "ribbon", alpha = .3)

有什么建议吗?

这是一个最小的工作示例。我已将数据压缩为:

   Time Object          y      lower     upper
 1 1000      C 0.12453389 0.04510504 0.2039627
 2 1000      T 0.58826856 0.37615078 0.8003864
 3 1000      U 0.09437160 0.03278069 0.1559625
 4 1100      C 0.12140127 0.03943988 0.2033627
 5 1100      T 0.64560823 0.44898727 0.8422292
 6 1100      U 0.06725172 0.01584248 0.1186610

d <- structure(list(Time = c(1000L, 1000L, 1000L, 1100L, 1100L, 1100L), Object = structure(c(1L, 2L, 3L, 1L, 2L, 3L), .Label = c("C", 
"T", "U"), class = "factor"), y = c(0.12453389, 0.58826856, 0.0943716, 
0.12140127, 0.64560823, 0.06725172), lower = c(0.04510504, 0.37615078, 
0.03278069, 0.03943988, 0.44898727, 0.01584248), upper = c(0.2039627, 
0.8003864, 0.1559625, 0.2033627, 0.8422292, 0.118661)), .Names = c("Time", 
"Object", "y", "lower", "upper"), class = "data.frame", row.names = c("1", 
"2", "3", "4", "5", "6"))

这是新的绘图代码:

ggplot(d, aes(Time, y, color = Object, fill = Object)) +
  geom_line(size = 2) +
  geom_ribbon(aes(ymin = lower, ymax = upper), alpha = .3)

最佳答案

您可以使用颜色参数删除边框:

ggplot(d, aes(Time, y, color = Object, fill = Object)) +
  geom_line(size = 2) +
  geom_ribbon(aes(ymin = lower, ymax = upper), alpha = .3, colour = NA)

关于r - ggplot : remove lines at ribbon edges,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7755041/

相关文章:

r - 当我使用 R 导出表格时,gt() 有没有办法删除表格周围奇怪的白色边框?

r - 使用 dplyr 在数据库中写入表

r - 使用 ggplot2 绘制 k 均值聚类

在 ggplot2 中重置 update_geom_defaults()

r - 使用 R 绘制分类数据

r - R 中的两个 for 循环

R函数检查字符串中的多个文本

r - 使用ggplot2绘制具有多个子多边形和孔的SpatialPolygons

r - 一起使用facet_grid和facet_wrap

r - 在 Ubuntu 中工作时如何在 R 中复制绘图?