plot.new()出错

时间:2014-05-09 10:50:27

标签: r plot rstudio rstudio-server

我在做一些GIS图时使用R Studio。不幸的是,我一直得到同样的错误,但仅限于某些地图。

  

plot.new()出错:数字边距太大

我知道绘图窗口大小存在问题,但我想知道是否有办法编辑默认设置而无需每次都手动更改窗口大小?

1 个答案:

答案 0 :(得分:0)

您可以更改R以绘制到其他设备,这可以让您在单独的窗口中弹出绘图。

Windows解决方案:

plot_data <- sample(1:100,100)
windows(width=500,height=500)
plot(plot_data,type="o")

另见this answer