swh:1:snp:dfbb8ae2fb3632e8a8608d675a49ab1f110b7c6d
Raw File
Tip revision: 29f113694042e3b2d644ac644f506ed11e472440 authored by Doug Nychka on 15 May 2002, 16:33:19 UTC
version 1.2
Tip revision: 29f1136
summary.Krig.Rd
\name{summary.krig}
\alias{summary.krig}
\title{
  Summary for Krig spatial process estimate 
}
\description{
Creates a list of summary results including estimates for  the nugget
variance (sigma) and the smoothing
parameter (lambda). This list is usually printed using print.summary.Krig.
}
\usage{
summary.Krig(x, digits=4)
}
\arguments{
\item{x}{
A Krig object. 
}
\item{digits}{
Number of significant digits in summary. 
}
}
\value{
Gives a summary of the Krig object. The components 
include the function call, number of observations, effective degrees  
of freedom, residual degrees of freedom, root mean squared error,  
R-squared and adjusted R-squared, log10(lambda), cost, GCV minimum and  
a summary of the residuals.  
}
\details{
This function is a method for the generic function summary for class
Krig. The results are formatted and printed using print.summary.Krig.
}
\seealso{
Krig, summary, print.summary.Krig  
}
\examples{
fit<- Krig(ozone$x, ozone$y, exp.cov, theta=100)  
summary(fit)                            # summary of fit 
}
\keyword{spatial}
% docclass is function
% Converted by Sd2Rd version 1.21.
back to top