This shows how to dynamically generate a plot in R+ggplot2, then embed it into a latex document, and compile it to pdf, all with proper autodependencies.
4 lines
133 B
R
4 lines
133 B
R
library(ggplot2)
|
|
|
|
qplot(mpg, wt, data = mtcars) + facet_wrap(~cyl) + theme_bw()
|
|
ggsave("mpg.new.eps", width=4, height=2, units='in')
|