EVOLUTION-MANAGER
Edit File: pairs.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: Pairs plot (matrix of scatterplots)</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 pairs {raster}"><tr><td>pairs {raster}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2> Pairs plot (matrix of scatterplots) </h2> <h3>Description</h3> <p>Pair plots of layers in a RasterStack or RasterBrick. This is a wrapper around graphics function <code><a href="../../graphics/html/pairs.html">pairs</a></code>. </p> <h3>Usage</h3> <pre> ## S4 method for signature 'RasterStackBrick' pairs(x, hist=TRUE, cor=TRUE, use="pairwise.complete.obs", maxpixels=100000, ...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>x</code></td> <td> <p>RasterBrick or RasterStack</p> </td></tr> <tr valign="top"><td><code>hist</code></td> <td> <p>Logical. If TRUE a histogram of the values is shown on the diagonal</p> </td></tr> <tr valign="top"><td><code>cor</code></td> <td> <p>Logical. If TRUE the correlation coefficient is shown in the upper panels</p> </td></tr> <tr valign="top"><td><code>use</code></td> <td> <p>Argument passed to the <code><a href="../../stats/html/cor.html">cor</a></code> function</p> </td></tr> <tr valign="top"><td><code>maxpixels</code></td> <td> <p>Integer. Number of pixels to sample from each layer of large Raster objects</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Additional arguments (only <code>cex</code> and <code>main</code>)</p> </td></tr> </table> <h3>See Also</h3> <p><code><a href="boxplot.html">boxplot</a>, <a href="hist.html">hist</a>, <a href="density.html">density</a></code> </p> <h3>Examples</h3> <pre> r <- raster(system.file("external/test.grd", package="raster") ) s <- stack(r, 1/r, sqrt(r)) pairs(s) ## Not run: # to make indvidual histograms: hist(r) # or scatter plots: plot(r, 1/r) ## End(Not run) </pre> <hr /><div style="text-align: center;">[Package <em>raster</em> version 3.3-13 <a href="00Index.html">Index</a>]</div> </body></html>