Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个折线图,其中一些点具有正值,而其他点具有负值(我正在绘制优势比)。我想让 y=0 网格线看起来更暗或更粗,以使视觉效果更明显。我怎么能用ggplot2做到这一点?
作为对此的延伸,我还想问这个问题:有没有一种方法可以使特定的网格线更暗或更粗(例如,y=5 或垂直网格线 x=-2)?
尝试添加到您的 ggplot
geom_hline(yintercept = 0, size = 4) # or whichever size needed
对于x-intercepts,使用:
x
geom_vline(xintercept = ...)