I have a graph that I can create with this ggplot2 code:
ggplot(total.new, aes(x=day, y=new.total)) + geom_line() +
facet_wrap("practice", scales="free_y", ncol=2)
Now I wanted to try out rCharts, so I tried the following:
rPlot(new.total ~ day | practice, data=total.new, type='line')
and all I get is a blank screen in the viewer with no errors of any kind. Any ideas what might be wrong?