我有一个可以用这个ggplot2代码创建的图表:
ggplot(total.new, aes(x=day, y=new.total)) + geom_line() +
facet_wrap("practice", scales="free_y", ncol=2)
现在我想尝试rCharts,所以我尝试了以下内容:
rPlot(new.total ~ day | practice, data=total.new, type='line')
我得到的只是查看器中的空白屏幕,没有任何错误。什么想法可能是错的?