标签: r plot ggplot2 panel lattice
我正在使用xyplot中的面板绘制{{1}}。它看起来不错,但我想在每个面板中重复刻度线(10,20,30,......)。
xyplot
可以使用R,还是应该切换到xyplot(如果是,如何)?
R
最小的工作示例:
ggplot
输出:
答案 0 :(得分:2)
这很简单:
update(elasticityplot, scales = list(alternating = 3))
请注意,scales也可以在xyplot内指定,即
scales
xyplot(..., scales = list(alternating = 3))