https://github.com/insightsengineering/ggplot2.utils
Utilities, in particular geoms and stats, for use with ggplot2
https://github.com/insightsengineering/ggplot2.utils
Last synced: about 1 year ago
JSON representation
Utilities, in particular geoms and stats, for use with ggplot2
- Host: GitHub
- URL: https://github.com/insightsengineering/ggplot2.utils
- Owner: insightsengineering
- Created: 2021-07-05T21:42:30.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T10:22:51.000Z (over 1 year ago)
- Last Synced: 2025-03-26T12:51:14.441Z (about 1 year ago)
- Language: R
- Homepage: https://insightsengineering.github.io/ggplot2.utils/
- Size: 11.6 MB
- Stars: 6
- Watchers: 14
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
[](https://www.repostatus.org/#active)
[](https://www.r-pkg.org/badges/version-last-release/ggplot2.utils)
[](https://cranlogs.r-pkg.org/badges/ggplot2.utils)
[](https://cranlogs.r-pkg.org/badges/grand-total/ggplot2.utils)
[](https://raw.githubusercontent.com/insightsengineering/ggplot2.utils/_xml_coverage_reports/data/main/coverage.xml)
\
The `ggplot2.utils` package simplifies access to utility functions adding functionality to [ggplot2](https://ggplot2.tidyverse.org/). The package imports functions across multiple extensions packages and then exports them, so that the user only needs to load this package instead of multiple others.
In addition, this package provides layers for Kaplan-Meier lines and ticks additions to plots.
All functions are tested to make sure that they work reliably.
## Installation
Typically you want to install the release version. Developers and beta-testers
might want to install the development version.
### Release
You can install the current release version from *CRAN* with:
```{r cran-installation, eval = FALSE}
install.packages("ggplot2.utils")
```
### Development
You can install the current development version from *R-Universe* with:
```{r runiverse-installation, eval = FALSE}
install.packages(
"ggplot2.utils",
repos = c("https://insightsengineering.r-universe.dev", "https://cloud.r-project.org")
)
```
Alternatively, you can install the current development version from *GitHub* with:
```{r gh-installation, eval = FALSE}
if (!require("remotes")) {
install.packages("remotes")
}
remotes::install_github("insightsengineering/ggplot2.utils")
```
## Getting Started
Have a look at the package index to explore the available functionality:
```{r index, eval = FALSE}
help(package = "ggplot2.utils")
```
## Citing `ggplot2.utils`
To cite `ggplot2.utils` please see [here](https://insightsengineering.github.io/ggplot2.utils/latest-tag/authors.html#citation).