Skip to content

nugget in variogram

3 messages · Arantzazu Blanco Bernardeau, Edzer Pebesma

#
On 09/30/2010 04:13 PM, Arantzazu Blanco Bernardeau wrote:
Well, it's not the usual way, where you would fit a model:

library(gstat)
data(meuse)
coordinates(meuse) = ~x+y
v = variogram(log(zinc)~1, meuse)
v.m = fit.variogram(v, vgm(1, "Sph", 500, 1))
v[1, "gamma"] # your estimator:
plot(v, v.m)
v.m$psill[1] / sum(v.m$psill) # the usual estimator:

Only when you have plenty of measurements at very short distances
apart, I can imagine you would use the sample variogram (v) value.

  
    
#
Sorry, this was too fast again:

v[1,"gamma"]
# or
v.m$psill[1]

are estimators of the nugget variance;

v.m$psill[1] / sum(v.m$psill)

is an estimator of the nugget-to-sill ratio.
On 09/30/2010 06:39 PM, Edzer Pebesma wrote: