YaRrr Package
The yarrr
package contains a mixture of data, functions
and tutorials supporting the e-book “YaRrr! The Pirate’s Guide to R”
(www.thepiratesguidetor.com).
To install the (stable) version from CRAN, run the following code
# Install yarrr from CRAN
install.packages("yarrr")
To install the latest developer version from GitHub, run the following code
# Install developer version from GitHub
install.packages("devtools")
::install_github("ndphillips/yarrr",
devtoolsbuild_vignettes = TRUE)
Once you’ve installed the yarrr
package, you can load it
and open the main package guide as follows:
library("yarrr") # load yarrr
yarrr.guide() # run main package guide
Here are the most important parts of the package:
The pirateplot
function creates a pirateplot, a
transparent (both literally and figuratively) plot for displaying
continuous data as a function of 1, 2, or 3 discrete variables. Unlike
traditional plots, like barplots and boxplots, the pirateplot shows both
raw data (jittered points), descriptive statistics (line and/or bar),
and inferential statistics (95% Bayesian Highest Density Intervals or
Confidence Intervals), in one plot. While the default plot shows all
these elements, the user can easily customize the transparency of each
element using additional arguments.
See ?pirateplot
or https://CRAN.R-project.org/package=yarrr for more
details