我安装了包lattice
,并输入了xyplot()
。没有错误消息,但图表也没有显示。我试图切换到plot()
并且效果很好。知道为什么会这样吗?谢谢!
答案 0 :(得分: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 Simpson。