ggblanket

CRAN status CRAN RStudio mirror downloads CRAN RStudio mirror downloads CRAN RStudio mirror downloads CRAN RStudio mirror downloads

Purpose

ggblanket is a package of wrapper functions around the fantastic ggplot2 package.

The primary objective is to simplify ggplot2 visualisation.

Secondary objectives relate to:

It is intended to be useful for all levels of experience from beginner to expert.

Installation

install.packages("ggblanket")

Examples

library(ggblanket)
library(palmerpenguins)

penguins |>
  gg_point(
    x = flipper_length_mm,
    y = body_mass_g, 
    col = species)



penguins |>
  tidyr::drop_na(sex) |> 
  gg_histogram(
    x = flipper_length_mm,
    col = sex,
    facet = species,
    pal = c("#2596be", "#fc7c24"),
    col_labels = stringr::str_to_sentence)

Get started

Click here to get started learning how ggblanket works.

Thanks!

Thank you to all authors and contributors to ggplot2, tidyverse, and the wider R ecosystem. If you like ggblanket, please give the repository a star and help spread the word.