1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
%#
%# fields is a package for analysis of spatial data written for
%# the R software environment.
%# Copyright (C) 2024 Colorado School of Mines
%# 1500 Illinois St., Golden, CO 80401
%# Contact: Douglas Nychka, douglasnychka@gmail.edu,
%#
%# This program is free software; you can redistribute it and/or modify
%# it under the terms of the GNU General Public License as published by
%# the Free Software Foundation; either version 2 of the License, or
%# (at your option) any later version.
%# This program is distributed in the hope that it will be useful,
%# but WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%# GNU General Public License for more details.
%#
%# You should have received a copy of the GNU General Public License
%# along with the R software environment if not, write to the Free Software
%# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
%# or see http://www.r-project.org/Licenses/GPL-2
%##END HEADER
%##END HEADER
\name{mKrig}
\alias{mKrig}
\alias{predict.mKrig}
\alias{mKrig.coef}
\alias{mKrig.trace}
\alias{print.mKrig}
\alias{print.mKrigSummary}
\alias{summary.mKrig}
\alias{mKrigCheckXY}
\title{"micro Krig" Spatial process estimate of a curve or surface,
"kriging" with a known covariance function. }
\description{
This is a simple version of the Krig function that is
optimized for large data sets, sparse linear algebra, and a clear exposition of the
computations. Lambda, the smoothing parameter must be fixed.
This function is called higher level functions for maximum likelihood estimates of
covariance paramters.
}
\usage{
mKrig(x, y, weights = rep(1, nrow(x)), Z = NULL, ZCommon =
NULL, cov.function = "stationary.cov", cov.args =
NULL, lambda = NA, m = 2, chol.args = NULL, find.trA =
TRUE, NtrA = 20, iseed = NA, na.rm = FALSE,
collapseFixedEffect = TRUE, tau = NA, sigma2 = NA,
verbose = FALSE, ...)
\method{predict}{mKrig}( object, xnew=NULL,ynew=NULL, grid.list = NULL,
derivative=0,
Z=NULL,drop.Z=FALSE,just.fixed=FALSE,
collapseFixedEffect = object$collapseFixedEffect, ...)
\method{summary}{mKrig}(object, ...)
\method{print}{mKrig}( x, digits=4,... )
\method{print}{mKrigSummary}( x, digits=4,... )
mKrig.coef(object, y, collapseFixedEffect=TRUE)
mKrig.trace( object, iseed, NtrA)
mKrigCheckXY(x, y, weights, Z, ZCommon, na.rm)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{collapseFixedEffect}{ If replicated fields are given to mKrig (i.e.
\code{y} has more than one column) there is the choice of estimating the
fixed effect coefficients (\code{d} in the returned object) separately
for each replicate or pooling across replicates and deriving a single
estimate. If \code{collapseFixedEffect} is TRUE (default) the estimates are
pooled. }
\item{chol.args}{A list of optional arguments (pivot, nnzR) that will
be used with the call to the cholesky decomposition. Pivoting is done
by default to make use of sparse matrices when they are
generated. This argument is useful in some cases for sparse covariance
functions to reset the memory parameter nnzR. (See example below.)}
\item{cov.args}{A list of optional arguments that will be used in
calls to the covariance function.}
\item{cov.function}{The name, a text string of the covariance function.}
\item{derivative}{If zero the surface will be evaluated. If not zero
the matrix of partial derivatives will be computed.}
\item{digits}{Number of significant digits used in printed output.}
\item{drop.Z}{If true the fixed part will only be evaluated at the
polynomial part of the fixed model. The contribution from the other
covariates will be omitted.}
\item{find.trA}{
If TRUE will estimate the effective degrees of freedom using
a simple Monte Carlo method. This will add to the computational
burden by approximately NtrA solutions of the linear system but
the cholesky decomposition is reused.}
\item{grid.list}{A grid.list to evaluate the surface in place of specifying
arbitrary locations.}
\item{iseed}{Random seed ( using \code{set.seed(iseed)}) used to generate
iid normals for Monte Carlo estimate of the trace. Set this to an integer to insure the same random draws are used to compute the approximate trace and be consistent across different values of the covariance parameters. }
\item{just.fixed}{If TRUE only the predictions for the fixed part of
the model will be evaluted.}
\item{lambda}{ Smoothing parameter or equivalently the ratio between
the nugget and process varainces.}
\item{m}{ The degree of the polynomial used in the fixed part.
This is follows the thin plate spline convention that the degree is m-1.
Default is m=2 for a linear function, m=1 a constant and,
as an quick logical switch, m=0 will result in no fixed part in the spatial model.
}
\item{na.rm}{If TRUE NAs in y are omitted along with corresonding rows of x.}
\item{NtrA}{Number of Monte Carlo samples for the trace. But if NtrA is
greater than or equal to the number of observations the trace
is computed exactly.}
\item{object}{Object returned by mKrig. (Same as "x"
in the print function.)}
\item{sigma2}{Value of the process variance.}
\item{tau}{ Value of the measurment error (aka nugget) standard deviation.}
\item{verbose}{If TRUE prints out intermediate values of objsects for debugging.}
\item{weights}{Precision ( 1/variance) of each observation}
\item{x}{Matrix of unique spatial locations (or in print or surface
the returned mKrig object.)}
\item{xnew}{Locations for predictions.}
\item{y}{ Vector or matrix of observations at spatial locations,
missing values are not allowed! Or in mKrig.coef a new
vector of observations. If y is a matrix the columns are
assumed to be independent replicates of the spatial field. I.e.
observation vectors generated
from the same covariance and measurment error model but
independent from each other.
}
\item{ynew}{New observation vector. \code{mKrig} will reuse matrix
decompositions and find the new fit to these data.}
\item{Z}{ Linear covariates to be included in fixed part of the
model that are distinct from the default low order
polynomial in \code{x}. (NOTE the order of the polynomial
determined by \code{m})}
\item{ZCommon}{ Linear covariates to be included in fixed part of the
model. This option is only relevant for independent realizations of the fields
(i.e. y is a matrix). The number of rows of \code{ZCommon} should be equal to
the
number of observations times the number of realizations. }
\item{\dots}{ In \code{mKrig} and \code{predict} additional arguments
that will be passed to the covariance function.}
}
\details{
This function is an abridged version of Krig and uses a more direct
computation for the linear algebra that faciliates compactly supported
covariance functions. The m stand for micro
and
done for a fixed lambda parameter and other covariance parameters (e.g. aRange) and for unique spatial locations.
This is also the basic computational element of the top level \code{\link{spatialProcess} } function for finding MLEs.
See the source code for a commented version that described the computation.
These restrictions simplify the code for reading. Note that also
little checking is done and the spatial locations are not transformed
before the estimation.
\strong{Repeated locations} To keep the coding simple \code{x} must be a set of unique locations. When there are multiple observations at a location -- also known as replicated locations -- one strategy is to use the average spatial value for this location in place of mulitple observations. One can also adjust the weights accordingly for this location if that makes sense. To do this use the function
\code{\link{Krig.replicates}}.
For example
\preformatted{
out<- Krig.replicates( x=x, y=y)
}
and \code{out$xM, out$yM, out$weightsM} will be the unique locations with averaged values and the number of observations.
\preformatted{
out<- Krig.replicates( x=x, y=y, weights= weights)
}
will also combine the weight vector based on the replications and be returned as \code{out$weightsM}.
\strong{Multiple fields} Because most of the operations are linear
algebra this code has been written to handle multiple data
sets. Specifically, if the spatial model is the same except for
different observed values (the y's), one can pass \code{y} as a matrix
and the computations are done efficiently for each set.
The likelihood across all replicates is combined and denoted with \code{FULL} at the end. Also note the \code{collapseFixedEffects} switch to determine if the regression part is found seperately for each replicate or combined into a single model. Note that
this is not a multivariate spatial model -- just an efficient computation
over several data vectors without explicit looping. A big difference in
the computations is that an exact expression for the trace of the
smoothing matrix is (trace A(lambda)) is computationally expensive and
a Monte Carlo approximation is supplied instead.
\strong{Supporting functions}
See \code{predictSE.mKrig} for prediction standard errors and
\code{sim.mKrig.approx} to quantify the uncertainty in the estimated function using conditional
simulation.
\code{predict.mKrig} will evaluate the derivatives of the estimated
function if derivatives are supported in the covariance function. For
example the wendland.cov function supports derivatives.
\code{summary.mKrig} creates a list of class \code{mKrigSummary} along with a table of standard errors for the fixed linear parameters.
\code{print.mKrigSummary} prints the \code{mKrigSummary} object and adds some more explanation about the model and results
\code{print.mKrig} prints a summary for the \code{mKrig} object that the combines the summary and print methods.
\code{mKrig.coef} finds "beta"" and "c" coefficients representing the
solution using the previous cholesky decomposition but for a new data
vector. This is used in computing the prediction standard error in
predictSE.mKrig and can also be used to evalute the estimate
efficiently at new vectors of observations provided the locations, fixed part, and
the covariance matrix all remain the same .
\strong{Sparse covariance functions} Sparse matrix methods are handled through overloading the usual linear
algebra functions with sparse versions. But to take advantage of some
additional options in the sparse methods the list argument chol.args
is a device for changing some default values. The most important of
these is \code{nnzR}, the number of nonzero elements anticipated in
the Cholesky factorization of the postive definite linear system used
to solve for the basis coefficients. The sparse of this system is
essentially the same as the covariance matrix evalauted at the
observed locations. As an example of resetting \code{nzR} to 450000
one would use the following argument for chol.args in mKrig:
\code{ chol.args=list(pivot=TRUE,memory=list(nnzR= 450000))}
\strong{Approximation trace estimate}
\code{mKrig.trace} This is an internal function called by \code{mKrig}
to estimate the effective degrees of freedom. The Kriging surface
estimate at the data locations is a linear function of the data and
can be represented as A(lambda)y. The trace of A is one useful
measure of the effective degrees of freedom used in the surface
representation. In particular this figures into the GCV estimate of
the smoothing parameter. It is computationally intensive to find the
trace explicitly but there is a simple Monte Carlo estimate that is
often very useful. If E is a vector of iid N(0,1) random variables
then the trace of A is the expected value of t(E)AE. Note that AE is
simply predicting a surface at the data location using the synthetic
observation vector E. This is done for \code{NtrA} independent N(0,1)
vectors and the mean and standard deviation are reported in the
\code{mKrig} summary. Typically as the number of observations is
increased this estimate becomse more accurate. If NtrA is as large as
the number of observations (\code{np}) then the algorithm switches to
finding the trace exactly based on applying A to \code{np} unit
vectors.
}
\value{
\item{summary}{A named array with the values of covariance parameters
and log likelihoods.}
\item{beta}{Coefficients of the polynomial fixed part and if present
the covariates (Z).To determine which is which the logical vector
ind.drift also part of this object is TRUE for the polynomial
part. }
\item{c.coef}{ Coefficients of the nonparametric part.}
\item{nt}{ Dimension of fixed part.}
\item{np}{ Dimension of c.coef.}
\item{nZ}{Number of columns of Z covariate matrix (can be zero).}
\item{ind.drift}{Logical vector that indicates polynomial
coefficients in the \code{d} coefficients vector. This is helpful
to distguish between polynomial part and the extra covariates
coefficients associated with Z. }
\item{lambda.fixed}{The fixed lambda value}
\item{x}{Spatial locations used for fitting.}
\item{knots}{The same as x}
\item{cov.function.name}{Name of covariance function used.}
\item{args}{ A list with all the covariance arguments that were
specified in the call.}
\item{m}{Order of fixed part polynomial.}
\item{chol.args}{ A list with all the cholesky arguments that were
specified in the call.}
\item{call}{ A copy of the call to mKrig.}
\item{non.zero.entries}{ Number of nonzero entries in the covariance
matrix for the process at the observation locations.}
\item{lnDetCov}{Log determinant of the covariance matrix for the
observations having factored out sigma.}
\item{Omega}{GLS covariance for the estimated parameters in the fixed
part of the model (d coefficients0.}
\item{qr.VT, Mc}{QR and cholesky matrix decompositions needed to
recompute the estimate for new observation vectors.}
\item{fitted.values, residuals}{Usual predictions from fit.}
\item{eff.df}{Estimate of effective degrees of freedom. Either the
mean of the Monte Carlo sample or the exact value. }
\item{trA.info}{If NtrA ids less than \code{np} then the individual
members of the Monte Carlo sample and \code{sd(trA.info)/ sqrt(NtrA)}
is an estimate of the standard error. If NtrA is greater than or equal
to \code{np} then these are the diagonal elements of A(lamdba).}
\item{GCV}{Estimated value of the GCV function.}
\item{GCV.info}{Monte Carlo sample of GCV functions}
}
\author{Doug Nychka, Reinhard Furrer, John Paige}
\seealso{ Krig, surface.mKrig, Tps, fastTps, predictSurface, predictSE.mKrig, sim.mKrig.approx,
\code{ \link{mKrig.grid}}}
\examples{
#
# Midwest ozone data 'day 16' stripped of missings
data( ozone2)
y<- ozone2$y[16,]
good<- !is.na( y)
y<-y[good]
x<- ozone2$lon.lat[good,]
# nearly interpolate using defaults (Exponential covariance range = 2.0)
# see also mKrigMLEGrid to choose lambda by maxmimum likelihood
out<- mKrig( x,y, aRange = 2.0, lambda=.01)
out.p<- predictSurface( out)
surface( out.p)
#
# NOTE this should be identical to
# Krig( x,y, aRange=2.0, lambda=.01)
##############################################################################
# an example using a "Z" covariate and the Matern family
# again see mKrigMLEGrid to choose parameters by MLE.
data(COmonthlyMet)
yCO<- CO.tmin.MAM.climate
good<- !is.na( yCO)
yCO<-yCO[good]
xCO<- CO.loc[good,]
Z<- CO.elev[good]
out<- mKrig( xCO,yCO, Z=Z, cov.function="stationary.cov", Covariance="Matern",
aRange=4.0, smoothness=1.0, lambda=.1)
set.panel(2,1)
# quilt.plot with elevations
quilt.plot( xCO, predict(out))
# Smooth surface without elevation linear term included
surface( out)
set.panel()
#########################################################################
# here is a series of examples with bigger datasets
# using a compactly supported covariance directly
set.seed( 334)
N<- 1000
x<- matrix( 2*(runif(2*N)-.5),ncol=2)
y<- sin( 1.8*pi*x[,1])*sin( 2.5*pi*x[,2]) + rnorm( 1000)*.1
look2<-mKrig( x,y, cov.function="wendland.cov",k=2, aRange=.2,
lambda=.1)
# take a look at fitted surface
predictSurface(look2)-> out.p
surface( out.p)
# this works because the number of nonzero elements within distance aRange
# are less than the default maximum allocated size of the
# sparse covariance matrix.
# see options() for the default values. The names follow the convention
# spam.arg where arg is the name of the spam component
# e.g. spam.nearestdistnnz
# The following will give a warning for aRange=.9 because
# allocation for the covariance matirx storage is too small.
# Here aRange controls the support of the covariance and so
# indirectly the number of nonzero elements in the sparse matrix
\dontrun{
look2<- mKrig( x,y, cov.function="wendland.cov",k=2, aRange=.9, lambda=.1)
}
# The warning resets the memory allocation for the covariance matrix
# according the to values options(spam.nearestdistnnz=c(416052,400))'
# this is inefficient becuase the preliminary pass failed.
# the following call completes the computation in "one pass"
# without a warning and without having to reallocate more memory.
options( spam.nearestdistnnz=c(416052,400))
look2<- mKrig( x,y, cov.function="wendland.cov",k=2,
aRange=.9, lambda=1e-2)
# as a check notice that
# print( look2)
# reports the number of nonzero elements consistent with the specifc allocation
# increase in spam.options
# new data set of 1500 locations
set.seed( 234)
N<- 1500
x<- matrix( 2*(runif(2*N)-.5),ncol=2)
y<- sin( 1.8*pi*x[,1])*sin( 2.5*pi*x[,2]) + rnorm( N)*.01
\dontrun{
# the following is an example of where the allocation (for nnzR)
# for the cholesky factor is too small. A warning is issued and
# the allocation is increased by 25% in this example
#
look2<- mKrig( x,y,
cov.function="wendland.cov",k=2, aRange=.1, lambda=1e2 )
}
# to avoid the warning
look2<-mKrig( x,y,
cov.function="wendland.cov", k=2, aRange=.1,
lambda=1e2, chol.args=list(pivot=TRUE, memory=list(nnzR= 450000)))
###############################################################################
# fiting multiple data sets
#
#\dontrun{
y1<- sin( 1.8*pi*x[,1])*sin( 2.5*pi*x[,2]) + rnorm( N)*.01
y2<- sin( 1.8*pi*x[,1])*sin( 2.5*pi*x[,2]) + rnorm( N)*.01
Y<- cbind(y1,y2)
look3<- mKrig( x,Y,cov.function="wendland.cov",k=2, aRange=.1,
lambda=1e2 )
# note slight difference in summary because two data sets have been fit.
print( look3)
#}
\dontrun{
##################################################################
# finding a good choice for aRange as a taper
# Suppose the target is a spatial prediction using roughly 50 nearest neighbors
# (tapering covariances is effective for roughly 20 or more in the situation of
# interpolation) see Furrer, Genton and Nychka (2006).
# take a look at a random set of 100 points to get idea of scale
# and saving computation time by not looking at the complete set
# of points
# NOTE: This could also be done directly using the FNN package for finding nearest
# neighbors
set.seed(223)
ind<- sample( 1:N,100)
hold<- rdist( x[ind,], x)
dd<- apply( hold, 1, quantile, p= 50/N )
dguess<- max(dd)
# dguess is now a reasonable guess at finding cutoff distance for
# 50 or so neighbors
# full distance matrix excluding distances greater than dguess
hold2<- nearest.dist( x, x, delta= dguess )
# here is trick to find the number of nonsero rows for a matrix in spam format.
hold3<- diff( hold2@rowpointers)
# min( hold3) = 43 which we declare close enough. This also counts the diagonal
# So there are a minimum of 42 nearest neighbors ( median is 136)
# see table( hold3) for the distribution
# now the following will use no less than 43 - 1 nearest neighbors
# due to the tapering.
mKrig( x,y, cov.function="wendland.cov",k=2, aRange=dguess,
lambda=1e2) -> look2
}
###############################################################################
# use precomputed distance matrix
#
\dontrun{
y1<- sin( 1.8*pi*x[,1])*sin( 2.5*pi*x[,2]) + rnorm( N)*.01
y2<- sin( 1.8*pi*x[,1])*sin( 2.5*pi*x[,2]) + rnorm( N)*.01
Y<- cbind(y1,y2)
#precompute distance matrix in compact form
distMat = rdist(x, compact=TRUE)
look3<- mKrig( x,Y,cov.function="stationary.cov", aRange=.1,
lambda=1e2, distMat=distMat )
#precompute distance matrix in standard form
distMat = rdist(x)
look3<- mKrig( x,Y,cov.function="stationary.cov", aRange=.1,
lambda=1e2, distMat=distMat )
}
}
\references{
\url{https://github.com/dnychka/fieldsRPackage}
}
% Add one or more standard keywords, see file 'KEYWORDS' in the
% R documentation directory.
\keyword{spatial }
|