在 xyplot 中的特定值上绘制网格线
我有一个 xyplot,我想在 0 值上绘制网格线。
如何做到这一点?
I have a xyplot
and I want to draw grid lines on the 0 values.
How this can be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 lattice 变更日志:
所以你可以用一行来完成:
如果你想要
panel.grid
喜欢线条样式,那么不错的技巧:According to lattice changelog:
So you could do it in one line:
If you want
panel.grid
like line style, then nice trick:如果您使用
lattice
包(xyplot
隐含),您可以使用panel.abline
在标记的刻度上绘制线条。If you're using package
lattice
(which is implied withxyplot
), you can usepanel.abline
to draw lines over labeled ticks.有一个lattice llines函数可以替代base中的lines()功能。还有一个 panel.lines 函数。
There is a lattice llines function that replaces the function of lines() functionality in base. There is also a panel.lines function.