cheat-sheets

Cheat sheets for various stuff

View the Project on GitHub bertvv/cheat-sheets

R programming tricks

Plots

Saving a plot from the Console.

> x11()  # opens a plot window
> plot(...)
> savePlot('plot-name.png')

Saving an image from the Plot Zoom window doesn’t work, this is a workaround.

Resources