stat_identitystat_identity(mapping=NULL, data=NULL, geom="point", position="identity", ...)
Don't transform data
This page describes stat_identity, see layer and qplot for how to create a complete plot from individual components.
What do you think of the documentation? Please let me know by filling out this short online survey.
To use these variables in an aesthetic mapping, you need to surrond them with .., like aes(x = ..output..). This tells ggplot that the variable isn't the original dataset, but has been created by the statistic.
, Parameters control the appearance of the stat. In addition to the parameters listed below (if any), any aesthetic can be used as a parameter, in which case it will override any aesthetic mapping.
...: ignored This function returns a layer object.
> # Doesn't do anything, so hard to come up a useful example
What do you think of the documentation? Please let me know by filling out this short online survey.