突出显示 ggplot2 中感兴趣的区域
在普通绘图中,可以在 plot
的 panel.first
参数中使用 polygon
调用来突出显示背景区域。是否可以在 ggplot2 中执行相同的操作?可以在保留网格线的同时完成吗?
例如:
# plot hp and wt for mtcars data, highlighting region where hp/wt ratio < 35
with(mtcars,plot(hp,wt,
panel.first=polygon(c(0,0,max(wt)*35),c(0,max(wt),max(wt)),
col="#d8161688",border=NA)))
In vanilla plotting, it is possible to use a polygon
call in the panel.first
argument to plot
to highlight a background region. Is it possible to do the same in ggplot2
? Can it be done while preserving the gridlines?
eg:
# plot hp and wt for mtcars data, highlighting region where hp/wt ratio < 35
with(mtcars,plot(hp,wt,
panel.first=polygon(c(0,0,max(wt)*35),c(0,max(wt),max(wt)),
col="#d8161688",border=NA)))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,ggplot2 可以做到这一点。要保持网格线的可见性,您可以使用 Alpha 透明度。请注意,一般来说,几何图形和统计数据的应用顺序很重要。
Yes, that's possible with ggplot2. To preserve the visibility of grid lines you can use alpha transparency. Note that, in general, the order in which geoms and stats are applied matters.