EVOLUTION-MANAGER
Edit File: semat.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Evaluate Kriging Standard Error of Prediction over a Grid</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for semat {spatial}"><tr><td>semat {spatial}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2> Evaluate Kriging Standard Error of Prediction over a Grid </h2> <h3>Description</h3> <p>Evaluate Kriging standard error of prediction over a grid. </p> <h3>Usage</h3> <pre> semat(obj, xl, xu, yl, yu, n, se) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>obj</code></td> <td> <p>object returned by <code>surf.gls</code> </p> </td></tr> <tr valign="top"><td><code>xl</code></td> <td> <p>limits of the rectangle for grid </p> </td></tr> <tr valign="top"><td><code>xu</code></td> <td> </td></tr> <tr valign="top"><td><code>yl</code></td> <td> </td></tr> <tr valign="top"><td><code>yu</code></td> <td> </td></tr> <tr valign="top"><td><code>n</code></td> <td> <p>use <code>n</code> x <code>n</code> grid within the rectangle </p> </td></tr> <tr valign="top"><td><code>se</code></td> <td> <p>standard error at distance zero as a multiple of the supplied covariance. Otherwise estimated, and it assumed that a correlation function was supplied. </p> </td></tr></table> <h3>Value</h3> <p>list with components x, y and z suitable for <code>contour</code> and <code>image</code>. </p> <h3>References</h3> <p>Ripley, B. D. (1981) <em>Spatial Statistics.</em> Wiley. </p> <p>Venables, W. N. and Ripley, B. D. (2002) <em>Modern Applied Statistics with S.</em> Fourth edition. Springer. </p> <h3>See Also</h3> <p><code><a href="surf.gls.html">surf.gls</a></code>, <code><a href="trmat.html">trmat</a></code>, <code><a href="prmat.html">prmat</a></code> </p> <h3>Examples</h3> <pre> data(topo, package="MASS") topo.kr <- surf.gls(2, expcov, topo, d=0.7) prsurf <- prmat(topo.kr, 0, 6.5, 0, 6.5, 50) contour(prsurf, levels=seq(700, 925, 25)) sesurf <- semat(topo.kr, 0, 6.5, 0, 6.5, 30) contour(sesurf, levels=c(22,25)) </pre> <hr /><div style="text-align: center;">[Package <em>spatial</em> version 7.3-11 <a href="00Index.html">Index</a>]</div> </body></html>