Browse Source

latex figures!

tags/v0.1.1
hrbrmstr 8 years ago
parent
commit
6c1b2fa50b
  1. 6
      R/coord_proj.r
  2. 6
      R/geom_ash.r
  3. 6
      R/geom_bkde.r
  4. 6
      R/geom_bkde2d.r
  5. 6
      R/geom_xspline.r
  6. 6
      man/coord_proj.Rd
  7. BIN
      man/figures/coordproj01.pdf
  8. BIN
      man/figures/geombkde01.pdf
  9. BIN
      man/figures/geombkde2d01.pdf
  10. BIN
      man/figures/geomxspline01.pdf
  11. BIN
      man/figures/statash01.pdf
  12. 6
      man/geom_bkde.Rd
  13. 6
      man/geom_bkde2d.Rd
  14. 6
      man/geom_xspline.Rd
  15. 6
      man/stat_ash.Rd

6
R/coord_proj.r

@ -12,6 +12,12 @@
#' \figure{coord_proj_01.png}{options: width="100\%" alt="Figure: coord_proj_01.png"} #' \figure{coord_proj_01.png}{options: width="100\%" alt="Figure: coord_proj_01.png"}
#' } #' }
#' #'
#' \if{latex}{
#' A sample of the output from \code{coord_proj()} using the Winkel-Tripel projection:
#'
#' \figure{coordproj01.pdf}{options: width=10cm}
#' }
#'
#' @param proj projection definition. If left \code{NULL} will default to #' @param proj projection definition. If left \code{NULL} will default to
#' a Robinson projection #' a Robinson projection
#' @param inverse if \code{TRUE} inverse projection is performed (from a #' @param inverse if \code{TRUE} inverse projection is performed (from a

6
R/geom_ash.r

@ -8,6 +8,12 @@
#' \figure{stat_ash_01.png}{options: width="100\%" alt="Figure: stat_ash_01.png"} #' \figure{stat_ash_01.png}{options: width="100\%" alt="Figure: stat_ash_01.png"}
#' } #' }
#' #'
#' \if{latex}{
#' A sample of the output from \code{stat_ash()}:
#'
#' \figure{statash01.pdf}{options: width=10cm}
#' }
#'
#' @inheritParams ggplot2::geom_area #' @inheritParams ggplot2::geom_area
#' @param geom Use to override the default Geom #' @param geom Use to override the default Geom
#' @param ab half-open interval for bins \emph{[a,b)}. If no value is specified, #' @param ab half-open interval for bins \emph{[a,b)}. If no value is specified,

6
R/geom_bkde.r

@ -9,6 +9,12 @@
#' \figure{geom_bkde_01.png}{options: width="100\%" alt="Figure: geom_bkde_01.png"} #' \figure{geom_bkde_01.png}{options: width="100\%" alt="Figure: geom_bkde_01.png"}
#' } #' }
#' #'
#' \if{latex}{
#' A sample of the output from \code{geom_bkde()}:
#'
#' \figure{geombkde01.pdf}{options: width=10cm}
#' }
#'
#' @section Aesthetics: #' @section Aesthetics:
#' \code{geom_bkde} understands the following aesthetics (required aesthetics #' \code{geom_bkde} understands the following aesthetics (required aesthetics
#' are in bold): #' are in bold):

6
R/geom_bkde2d.r

@ -77,6 +77,12 @@ GeomBkde2d <- ggproto("GeomBkde2d", GeomPath,
#' \figure{geom_bkde2d_01.png}{options: width="100\%" alt="Figure: geom_bkde2d_01.png"} #' \figure{geom_bkde2d_01.png}{options: width="100\%" alt="Figure: geom_bkde2d_01.png"}
#' } #' }
#' #'
#' \if{latex}{
#' A sample of the output from \code{geom_bkde2d()}:
#'
#' \figure{geombkde2d01.pdf}{options: width=10cm}
#' }
#'
#' @param bandwidth the kernel bandwidth smoothing parameter. see #' @param bandwidth the kernel bandwidth smoothing parameter. see
#' \code{\link[KernSmooth]{bkde2D}} for details. If \code{NULL}, #' \code{\link[KernSmooth]{bkde2D}} for details. If \code{NULL},
#' it will be computed for you but will most likely not yield optimal #' it will be computed for you but will most likely not yield optimal

6
R/geom_xspline.r

@ -10,6 +10,12 @@
#' \figure{geom_xspline_01.png}{options: width="100\%" alt="Figure: geom_xspline_01.png"} #' \figure{geom_xspline_01.png}{options: width="100\%" alt="Figure: geom_xspline_01.png"}
#' } #' }
#' #'
#' \if{latex}{
#' A sample of the output from \code{geom_xspline()}:
#'
#' \figure{geomxspline01.pdf}{options: width=10cm}
#' }
#'
#' @section Aesthetics: #' @section Aesthetics:
#' \code{geom_xspline} understands the following aesthetics (required aesthetics #' \code{geom_xspline} understands the following aesthetics (required aesthetics
#' are in bold): #' are in bold):

6
man/coord_proj.Rd

@ -42,6 +42,12 @@ A sample of the output from \code{coord_proj()} using the Winkel-Tripel projecti
\figure{coord_proj_01.png}{options: width="100\%" alt="Figure: coord_proj_01.png"} \figure{coord_proj_01.png}{options: width="100\%" alt="Figure: coord_proj_01.png"}
} }
\if{latex}{
A sample of the output from \code{coord_proj()} using the Winkel-Tripel projection:
\figure{coordproj01.pdf}{options: width=10cm}
}
} }
\note{ \note{
When \code{inverse} is \code{FALSE} \code{coord_proj} makes a fairly When \code{inverse} is \code{FALSE} \code{coord_proj} makes a fairly

BIN
man/figures/coordproj01.pdf

Binary file not shown.

BIN
man/figures/geombkde01.pdf

Binary file not shown.

BIN
man/figures/geombkde2d01.pdf

Binary file not shown.

BIN
man/figures/geomxspline01.pdf

Binary file not shown.

BIN
man/figures/statash01.pdf

Binary file not shown.

6
man/geom_bkde.Rd

@ -84,6 +84,12 @@ A sample of the output from \code{geom_bkde()}:
\figure{geom_bkde_01.png}{options: width="100\%" alt="Figure: geom_bkde_01.png"} \figure{geom_bkde_01.png}{options: width="100\%" alt="Figure: geom_bkde_01.png"}
} }
\if{latex}{
A sample of the output from \code{geom_bkde()}:
\figure{geombkde01.pdf}{options: width=10cm}
}
} }
\section{Aesthetics}{ \section{Aesthetics}{

6
man/geom_bkde2d.Rd

@ -94,6 +94,12 @@ A sample of the output from \code{geom_bkde2d()}:
\figure{geom_bkde2d_01.png}{options: width="100\%" alt="Figure: geom_bkde2d_01.png"} \figure{geom_bkde2d_01.png}{options: width="100\%" alt="Figure: geom_bkde2d_01.png"}
} }
\if{latex}{
A sample of the output from \code{geom_bkde2d()}:
\figure{geombkde2d01.pdf}{options: width=10cm}
}
} }
\section{Computed variables}{ \section{Computed variables}{

6
man/geom_xspline.Rd

@ -76,6 +76,12 @@ A sample of the output from \code{geom_xspline()}:
\figure{geom_xspline_01.png}{options: width="100\%" alt="Figure: geom_xspline_01.png"} \figure{geom_xspline_01.png}{options: width="100\%" alt="Figure: geom_xspline_01.png"}
} }
\if{latex}{
A sample of the output from \code{geom_xspline()}:
\figure{geomxspline01.pdf}{options: width=10cm}
}
An X-spline is a line drawn relative to control points. For each control An X-spline is a line drawn relative to control points. For each control
point, the line may pass through (interpolate) the control point or it may point, the line may pass through (interpolate) the control point or it may

6
man/stat_ash.Rd

@ -67,6 +67,12 @@ A sample of the output from \code{stat_ash()}:
\figure{stat_ash_01.png}{options: width="100\%" alt="Figure: stat_ash_01.png"} \figure{stat_ash_01.png}{options: width="100\%" alt="Figure: stat_ash_01.png"}
} }
\if{latex}{
A sample of the output from \code{stat_ash()}:
\figure{statash01.pdf}{options: width=10cm}
}
} }
\section{Aesthetics}{ \section{Aesthetics}{

Loading…
Cancel
Save