I'm working with the olive data set in base R (see below for data accession instructions). I want to plot palmitic fats against palmitoleic fats, but when I type:
library(dslabs)
data(olive)
plot(olive$palmitic, olive$palmitoleic)
The response is, Error in plot.new() : figure margins too large
It's a pretty basic command. What's going wrong, and how do I fix it?