1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ggpubr-package.R
\docType{package}
\name{ggpubr-package}
\alias{ggpubr}
\alias{ggpubr-package}
\title{ggpubr: 'ggplot2' Based Publication Ready Plots}
\description{
The 'ggplot2' package is excellent and flexible for elegant data visualization in R. However the default generated plots requires some formatting before we can send them for publication. Furthermore, to customize a 'ggplot', the syntax is opaque and this raises the level of difficulty for researchers with no advanced R programming skills. 'ggpubr' provides some easy-to-use functions for creating and customizing 'ggplot2'- based publication ready plots.
}
\details{
General resources:
\itemize{
\item \href{https://rpkgs.datanovia.com/ggpubr/}{ggpubr documentation}
\item \href{https://www.datanovia.com/en/blog/tag/ggpubr/}{ggpubr tutorials}
}
}
\section{Package options}{
\describe{
\item{ggpubr.parse_aes}{logical indicating whether to parse or not aesthetics variables names.
Default is \code{TRUE}. For example, if you want \code{ggpubr} to handle non-standard column names, like \code{A-A},
without parsing, then set this option to \code{FALSE} using \code{options(ggpubr.parse_aes = FALSE)}.}
\item{ggpubr.null_device}{A function that creates an appropriate null device.
These include: \code{\link[cowplot:pdf_null_device]{cowplot::pdf_null_device}},
\code{\link[cowplot:png_null_device]{cowplot::png_null_device}},
\code{\link[cowplot:cairo_null_device]{cowplot::cairo_null_device}} and
\code{\link[cowplot:agg_null_device]{cowplot::agg_null_device}}. Default is
\code{\link[cowplot:pdf_null_device]{cowplot::pdf_null_device}}. This is used in
function like \code{\link{as_ggplot}()}, which needs to open a graphics
device to render ggplot objects into grid graphics objects. This function is
used to open null device for avoiding the display of unnecessary blank page
when calling \code{\link{ggarrange}()} or \code{\link{as_ggplot}()}} }
}
\seealso{
Useful links:
\itemize{
\item \url{https://rpkgs.datanovia.com/ggpubr/}
\item Report bugs at \url{https://github.com/kassambara/ggpubr/issues}
}
}
\author{
\strong{Maintainer}: Alboukadel Kassambara \email{alboukadel.kassambara@gmail.com}
}
\keyword{internal}
|