运行如下代码时,我得到了margins too large error
.
x <- seq(min(lats),max(lats),length.out=100)
y <- seq(min(lons),max(lons),length.out=100)
xy <- merge(x,y)
colnames(xy) <- c('lat','lon')
z <- predict(fit,xy)
scatterplot3d(x=xy$lat,y=xy$lon,z=z,xlim=c(min(lats),max(lats)),ylim=c(min(lons),max(lons)) )
我很确定,x,y,z 都是正确的。
即使尝试使用 scatterplot3d 帮助文档中的示例代码,我仍然收到错误消息:
## example 1
z <- seq(-10, 10, 0.01)
x <- cos(z)
y <- sin(z)
scatterplot3d(x, y, z, highlight.3d=TRUE, col.axis="blue",
col.grid="lightblue", main="scatterplot3d - 1", pch=20)
我检查了其他问题,似乎这个错误发生在 plot、ggplot 等。但大多数人都在谈论具体的解决方案,有些人建议从 RStudio 更改为控制台可以解决它。但是,一般来说,当我尝试绘制某些东西时,这个错误意味着什么?有没有更好的方法来解决这个问题?