EVOLUTION-MANAGER
Edit File: layer.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: Create a new layer</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 layer {ggplot2}"><tr><td>layer {ggplot2}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Create a new layer</h2> <h3>Description</h3> <p>A layer is a combination of data, stat and geom with a potential position adjustment. Usually layers are created using <code style="white-space: pre;">geom_*</code> or <code style="white-space: pre;">stat_*</code> calls but it can also be created directly using this function. </p> <h3>Usage</h3> <pre> layer( geom = NULL, stat = NULL, data = NULL, mapping = NULL, position = NULL, params = list(), inherit.aes = TRUE, check.aes = TRUE, check.param = TRUE, show.legend = NA, key_glyph = NULL, layer_class = Layer ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>geom</code></td> <td> <p>The geometric object to use display the data</p> </td></tr> <tr valign="top"><td><code>stat</code></td> <td> <p>The statistical transformation to use on the data for this layer, as a string.</p> </td></tr> <tr valign="top"><td><code>data</code></td> <td> <p>The data to be displayed in this layer. There are three options: </p> <p>If <code>NULL</code>, the default, the data is inherited from the plot data as specified in the call to <code><a href="ggplot.html">ggplot()</a></code>. </p> <p>A <code>data.frame</code>, or other object, will override the plot data. All objects will be fortified to produce a data frame. See <code><a href="fortify.html">fortify()</a></code> for which variables will be created. </p> <p>A <code>function</code> will be called with a single argument, the plot data. The return value must be a <code>data.frame</code>, and will be used as the layer data. A <code>function</code> can be created from a <code>formula</code> (e.g. <code>~ head(.x, 10)</code>).</p> </td></tr> <tr valign="top"><td><code>mapping</code></td> <td> <p>Set of aesthetic mappings created by <code><a href="aes.html">aes()</a></code> or <code><a href="aes_.html">aes_()</a></code>. If specified and <code>inherit.aes = TRUE</code> (the default), it is combined with the default mapping at the top level of the plot. You must supply <code>mapping</code> if there is no plot mapping.</p> </td></tr> <tr valign="top"><td><code>position</code></td> <td> <p>Position adjustment, either as a string, or the result of a call to a position adjustment function.</p> </td></tr> <tr valign="top"><td><code>params</code></td> <td> <p>Additional parameters to the <code>geom</code> and <code>stat</code>.</p> </td></tr> <tr valign="top"><td><code>inherit.aes</code></td> <td> <p>If <code>FALSE</code>, overrides the default aesthetics, rather than combining with them. This is most useful for helper functions that define both data and aesthetics and shouldn't inherit behaviour from the default plot specification, e.g. <code><a href="borders.html">borders()</a></code>.</p> </td></tr> <tr valign="top"><td><code>check.aes, check.param</code></td> <td> <p>If <code>TRUE</code>, the default, will check that supplied parameters and aesthetics are understood by the <code>geom</code> or <code>stat</code>. Use <code>FALSE</code> to suppress the checks.</p> </td></tr> <tr valign="top"><td><code>show.legend</code></td> <td> <p>logical. Should this layer be included in the legends? <code>NA</code>, the default, includes if any aesthetics are mapped. <code>FALSE</code> never includes, and <code>TRUE</code> always includes. It can also be a named logical vector to finely select the aesthetics to display.</p> </td></tr> <tr valign="top"><td><code>key_glyph</code></td> <td> <p>A legend key drawing function or a string providing the function name minus the <code>draw_key_</code> prefix. See <a href="draw_key.html">draw_key</a> for details.</p> </td></tr> <tr valign="top"><td><code>layer_class</code></td> <td> <p>The type of layer object to be constructued. This is intended for ggplot2 internal use only.</p> </td></tr> </table> <h3>Examples</h3> <pre> # geom calls are just a short cut for layer ggplot(mpg, aes(displ, hwy)) + geom_point() # shortcut for ggplot(mpg, aes(displ, hwy)) + layer(geom = "point", stat = "identity", position = "identity", params = list(na.rm = FALSE) ) # use a function as data to plot a subset of global data ggplot(mpg, aes(displ, hwy)) + layer(geom = "point", stat = "identity", position = "identity", data = head, params = list(na.rm = FALSE) ) </pre> <hr /><div style="text-align: center;">[Package <em>ggplot2</em> version 3.3.2 <a href="00Index.html">Index</a>]</div> </body></html>