Skip to content

Commit

Permalink
Re-roxygenize
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Aug 17, 2012
1 parent aa9655e commit 51ef455
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion man/fortify.sp.Rd
Expand Up @@ -3,10 +3,10 @@
\alias{fortify.Lines}
\alias{fortify.Polygon}
\alias{fortify.Polygons}
\alias{fortify.sp}
\alias{fortify.SpatialLinesDataFrame}
\alias{fortify.SpatialPolygons}
\alias{fortify.SpatialPolygonsDataFrame}
\alias{fortify.sp}
\title{Fortify method for classes from the sp package.}
\usage{
\method{fortify}{SpatialPolygonsDataFrame} (model, data,
Expand Down
6 changes: 5 additions & 1 deletion man/geom_segment.Rd
Expand Up @@ -4,7 +4,7 @@
\usage{
geom_segment(mapping = NULL, data = NULL,
stat = "identity", position = "identity", arrow = NULL,
lineend = "butt", ...)
lineend = "butt", na.rm = FALSE, ...)
}
\arguments{
\item{arrow}{specification for arrow heads, as created by
Expand All @@ -26,6 +26,10 @@
\item{position}{The position adjustment to use for
overlappling points on this layer}

\item{na.rm}{If \code{FALSE} (the default), removes
missing values with a warning. If \code{TRUE} silently
removes missing values.}

\item{...}{other arguments passed on to
\code{\link{layer}}. This can include aesthetics whose
values you want to set, not map. See \code{\link{layer}}
Expand Down
2 changes: 1 addition & 1 deletion man/geom_violin.Rd
Expand Up @@ -4,7 +4,7 @@
\usage{
geom_violin(mapping = NULL, data = NULL,
stat = "ydensity", position = "dodge", trim = TRUE,
scale = c("area", "count", "width"), ...)
scale = "area", ...)
}
\arguments{
\item{trim}{If \code{TRUE} (default), trim the tails of
Expand Down
2 changes: 1 addition & 1 deletion man/gg-add.Rd
@@ -1,7 +1,7 @@
\name{+.gg}
\alias{+.gg}
\alias{\%+\%}
\alias{\%+replace\%}
\alias{+.gg}
\title{Modify a ggplot or theme object by adding on new components.}
\usage{
\method{+}{gg} (e1, e2)
Expand Down
7 changes: 6 additions & 1 deletion man/ggsave.Rd
Expand Up @@ -6,7 +6,7 @@
device = default_device(filename), path = NULL,
scale = 1, width = par("din")[1],
height = par("din")[2], units = c("in", "cm", "mm"),
dpi = 300, ...)
dpi = 300, limitsize = TRUE, ...)
}
\arguments{
\item{filename}{file name/filename of plot}
Expand All @@ -33,6 +33,11 @@

\item{dpi}{dpi to use for raster graphics}

\item{limitsize}{when \code{TRUE} (the default),
\code{ggsave} will not save images larger than 50x50
inches, to prevent the common error of specifying
dimensions in pixels.}

\item{...}{other arguments passed to graphics device}
}
\description{
Expand Down
5 changes: 2 additions & 3 deletions man/stat_ydensity.Rd
Expand Up @@ -4,9 +4,8 @@
\usage{
stat_ydensity(mapping = NULL, data = NULL,
geom = "violin", position = "dodge", adjust = 1,
kernel = "gaussian", trim = TRUE,
scale = c("area", "count", "width"), na.rm = FALSE,
...)
kernel = "gaussian", trim = TRUE, scale = "area",
na.rm = FALSE, ...)
}
\arguments{
\item{trim}{If \code{TRUE} (default), trim the tails of
Expand Down

0 comments on commit 51ef455

Please sign in to comment.