Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://davidhodge931.github.io/ggblanket/
Simplify ggplot2 visualisation
https://davidhodge931.github.io/ggblanket/
data-visualisation data-visualization ggplot ggplot-extension ggplot2 ggplot2-enhancements r r-package visualisation visualization
Last synced: 2 months ago
JSON representation
Simplify ggplot2 visualisation
- Host: GitHub
- URL: https://davidhodge931.github.io/ggblanket/
- Owner: davidhodge931
- License: other
- Created: 2022-04-15T07:10:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T11:08:40.000Z (9 months ago)
- Last Synced: 2024-04-12T17:51:57.928Z (9 months ago)
- Topics: data-visualisation, data-visualization, ggplot, ggplot-extension, ggplot2, ggplot2-enhancements, r, r-package, visualisation, visualization
- Language: R
- Homepage: https://davidhodge931.github.io/ggblanket/
- Size: 668 MB
- Stars: 130
- Watchers: 4
- Forks: 9
- Open Issues: 14
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: rmarkdown::github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
message = FALSE,
warning = FALSE,
fig.width = 6,
fig.asp = 0.6,
out.width = "75%",
dpi = 300)
```# ggblanket
[![CRAN status](https://www.r-pkg.org/badges/version/ggblanket)](https://CRAN.R-project.org/package=ggblanket)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/ggblanket?color=lightgrey)](https://r-pkg.org/pkg/ggblanket)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/last-month/ggblanket?color=lightgrey)](https://r-pkg.org/pkg/ggblanket)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/last-week/ggblanket?color=lightgrey)](https://r-pkg.org/pkg/ggblanket)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/last-day/ggblanket?color=lightgrey)](https://r-pkg.org/pkg/ggblanket)
[![R-CMD-check](https://github.com/davidhodge931/ggblanket/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/davidhodge931/ggblanket/actions/workflows/R-CMD-check.yaml)## Overview
ggblanket is a package of ggplot2 wrapper functions.
The primary objective is to **simplify ggplot2 visualisation**.
Secondary objectives relate to:
* Design: produce well-designed visualisation
* Alignment: align with ggplot2 and tidyverse
* Scope: cover much of what ggplot2 does.Computational speed has been traded-off.
## Installation
``` r
install.packages("ggblanket")
```
## Example```{r, fig.asp=0.6}
library(ggblanket)
library(palmerpenguins)set_blanket()
penguins |>
gg_histogram(
x = flipper_length_mm,
col = species,
)
```## Get started
Click [here](https://davidhodge931.github.io/ggblanket/articles/ggblanket.html) to start learning how ggblanket works.
## Thank you
Thanks to the developers of ggplot2, tidyverse and the R ecosystem.
For Dad, always missed (Peter Hodge, 1953-2023).