The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
The goal of ggtibble is to allow creation of
similarly-formatted figures as lists of ggplots (gglist) and tibbles of
those lists with captions. These are augmented with
knit_print() methods enabling simple inclusion in
reports.
You can install the development version of ggtibble from
GitHub with:
# install.packages("devtools")
devtools::install_github("humanpred/ggtibble")This is a basic example which shows you how to solve a common problem:
library(ggtibble)
d_plot <-
data.frame(
A = rep(c("foo", "bar"), each = 4),
B = 1:8,
C = 11:18,
Bunit = "mg",
Cunit = "km"
)
all_plots <-
ggtibble(
d_plot,
ggplot2::aes(x = B, y = C),
outercols = c("A", "Bunit", "Cunit"),
caption = "All the {A}",
labs = list(x = "B ({Bunit})", y = "C ({Cunit})")
) +
ggplot2::geom_point() +
ggplot2::geom_line()
knit_print(all_plots)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.