在将不规则数据集准备到常规网格(使用interp
)后,我想使用filled.contour
绘制数据。我已经做了几次,到目前为止效果很好。不知何故,这次,fill.contour似乎正在以某个y值裁剪我的数据集。我检查了interp
生成的矩阵,看起来不错,所以我不知道为什么会这样做。
以下是我的数据,生成的栅格和情节的可点击链接:
Sr.All_ln<-interp(Sr.All$Lon, y = Sr.All$Lat, z = Sr.All$`Sr isot`, duplicate = "mean")
here is the matrix done with interp
filled.contour(Sr.All_ln, plot.axes = {axis(1);axis(2);points(Sr.All$Lon,Sr.All$Lat, pch=16)})
如果有人解决了我,我将非常感激!提前致谢,祝你有个美好的一天!