2011-03-27 25 views
2

我安裝了包lattice,並輸入xyplot()。沒有錯誤信息,但圖表也沒有顯示出來。我試圖切換到plot(),它運行良好。任何想法爲什麼發生?謝謝!類型格命令後不顯示圖形

+1

它也可能是,如果你在批處理模式下使用R,那麼你需要明確地打印()格子對象才能出現。 – richiemorrisroe 2011-03-27 16:26:54

+3

FAQ 7.22?:http://cran.r-project.org/doc/FAQ/R-FAQ.html#Why-do-lattice_002ftrellis-graphics-not-work_003f – 2011-03-28 09:24:27

+0

非常感謝!有用! – Lily 2011-04-01 12:36:37

回答

1

試試這個:

require(lattice) 
require(stats) 

Depth <- equal.count(quakes$depth, number=8, overlap=.1) 
my_plot <- xyplot(lat ~ long | Depth, data = quakes) 
print(my_plot) 

感謝richiemorrisroe和Gavin辛普森。