2015-10-23 51 views
1

導出格子包xyplot中顯示的scale_x和scale_y值有什麼方法嗎?我運行例如下面的代碼,但沒有名稱似乎包含這些值。導出格子包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

您想要導出圖中顯示的scale_x值嗎? –

+0

是的,的確,但名稱不會返回它們。 – Apostolos

回答

2

對於繪製的場景,你可以用

myplot$xscale.components(lim = myplot$x.limits)$bottom$ticks$at 

y蜱提取x蜱與

myplot$yscale.components(lim = myplot$y.limits)$left$ticks$at 

您可以找到這些電話的更完整的版本在lattice:::plot.trellis功能

+0

這就是它!萬分感謝。 – Apostolos

相關問題