How to restore default settings for charts in R

I am trying to get a plot, but I have

enter image description here

So, how can I improve this?

Upvotes: 0

Views: 80

Answers (1)

SabDeM
SabDeM

Reputation: 7190

Now that I know that it works well, I post it as a solution. Just reset all parameters with:

par()
plot(yourplot)

Upvotes: 2

Related Questions