How to resolve an Error in Plot.new() : figure margins Too large, in R

Asked

Viewed 25 times

0

Hello I’m trying to do this command:

tsdiag(m1,gof.lag=20)

Which was to hold 3 forks this way:

inserir a descrição da imagem aqui

but the following error appears: Error in Plot.new() figure margins Too large

How could I solve?

1 answer

0

This happens because the space to plot the images is insufficient for the graph you are crowding. You can drag the margins to make it bigger, or use the X11().

X11(); tsdiag(m1,gof.lag=20)

This way a new window will be created automatically and there will be no problem with the image size.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.