显示X和Y轴并使用spplot更改其范围

时间:2019-05-15 20:38:58

标签: r plot lattice

我正在尝试在绘图空间数据中使用R中的spplot函数。按照我的标准来看,我的图看起来不错,但是我试图找出如何更改可视化范围并显示其X和Y轴。

我目前正在使用spplot函数,如下所示:

 spplot(no2_surf.idw['var1.pred'],main = 'interpolated no2 surface concentrations',ylim<- c(latv[200],latv[40]), xlim <- c(lonv[60],lonv[180]))

使用xlim和ylim指定我的输出范围,但根本没有改变我绘制的输出。

我也不知道如何在显示的图形上显示轴。

以下是我的输出的图形,我打算将其放大到一个城市。 enter image description here

以下是我的代码以显示输出。

 spplot(no2_surf.idw['var1.pred'],main = 'interpolated no2 surface concentrations',ylim<- c(latv[200],latv[40]), xlim <- c(lonv[60],lonv[180]))

当前,我的代码没有得到任何“缩放”。

1 个答案:

答案 0 :(得分:0)

@ jtr13帮助回答了这个问题!需要使用等号而不是箭头。谢谢@ jtr13!