Variogram.corLin.Rd
This method function calculates the semi-variogram values
corresponding to the Linear correlation model, using the estimated
coefficients corresponding to object
, at the distances defined
by distance
.
# S3 method for class 'corLin'
Variogram(object, distance, sig2, length.out, ...)
an object inheriting from class "corLin"
,
representing an Linear spatial correlation structure.
an optional numeric vector with the distances at
which the semi-variogram is to be calculated. Defaults to
NULL
, in which case a sequence of length length.out
between the minimum and maximum values of
getCovariate(object)
is used.
an optional numeric value representing the process
variance. Defaults to 1
.
an optional integer specifying the length of the
sequence of distances to be used for calculating the semi-variogram,
when distance = NULL
. Defaults to 50
.
some methods for this generic require additional arguments. None are used in this method.
a data frame with columns variog
and dist
representing,
respectively, the semi-variogram values and the corresponding
distances. The returned value inherits from class Variogram
.
Cressie, N.A.C. (1993), "Statistics for Spatial Data", J. Wiley & Sons.
cs1 <- corLin(15, form = ~ Time | Rat)
cs1 <- Initialize(cs1, BodyWeight)
Variogram(cs1)[1:10,]
#> variog dist
#> 1 0.06666667 1.000000
#> 2 0.15102041 2.265306
#> 3 0.23537415 3.530612
#> 4 0.31972789 4.795918
#> 5 0.40408163 6.061224
#> 6 0.48843537 7.326531
#> 7 0.57278912 8.591837
#> 8 0.65714286 9.857143
#> 9 0.74149660 11.122449
#> 10 0.82585034 12.387755