Skip to content
Prev 8039 / 29559 Next

automap model defaults

Edzer Pebesma wrote:
See the following example:

data(meuse)
coordinates(meuse) = ~x+y
vgm1 <- variogram(log(zinc)~1, meuse)
vgm1$gamma = 1:15 + 0.00001*runif(15)
v1 = fit.variogram(vgm1, vgm(15,"Sph",1000,1))
v2 = fit.variogram(vgm1, vgm(15,"Lin",1000,1))
plot(vgm1, v1) #Sph
plot(vgm1, v2) #Lin

Probably the difference in the estimated covariance matrix is quite 
small between the linear and the spherical variogram. In this example 
the range is quite a bit larger than the spatial extent, so I think 
automap can handle this.

cheers,
Paul