How to make the map bigger

Using following code to create a map, it is very small by R Studio, the size is good by RGui, is it possible to reset the map size in R Studio? Thank you!

library(maps)
map("state")

resize the plot window then call map("state") again.

1 Like

It does work! Thank you!