I'm making a bunch of line graphs in R with ggplot2 and I want to save them as jpegs. However, I would like to make the graphs bigger or higher resolution, so that if you zoom in on the graphs when viewing them they don't look so pixelated.
Here's a code snippet:
library("ggplot2")
p <- ggplot(df1)
p <- p +
geom_line(aes(time, ee_amt, colour="ee_amt"), size = 2) +
geom_point(aes(time, ee_amt, colour="ee_amt"), size = 2)
jpeg("G:\\Auto Parts\\sample.jpg")
print(p)
dev.off()
