how to save plots into raster format from r

Solutions on MaxInterview for how to save plots into raster format from r by the best coders in the world

showing results for - "how to save plots into raster format from r"
Niamh
21 May 2016
1tiff(file="saving_plot3.tiff",
2width=6, height=4, units="in", res=100)
3hist(Temperature, col="steelblue")
4dev.off()