是否有某种方法可以导出格子包的xyplot中显示的scale_x和scale_y值?我运行以下代码,但似乎没有名称包含这些值。
library(lattice)
library(latticeExtra)
myplot <- xyplot(cars$speed~cars$dist)
print(myplot)
# xx': 0, 20, ..., 120
# yy': 5, 10, ..., 25
str(myplot)
提前感谢大家。
答案 0 :(得分:2)
对于该绘图方案,您可以使用
提取x
刻度
myplot$xscale.components(lim = myplot$x.limits)$bottom$ticks$at
和y
与
myplot$yscale.components(lim = myplot$y.limits)$left$ticks$at
您可以在lattice:::plot.trellis
功能