knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(tibble)
library(knitr)
library(dplyr)
library(forcats)
library(ggplot2)
library(modelr)
library(tidyr)
library(registryr)
library(scales)

Overview

This document summarises the functions available in the package that are for internal use at CORRP.

Registry Specific Colour Schemes

theme_define("adnet")

iris %>%
  group_by(Species) %>% 
  summarise(sepal_length_mean = mean(Sepal.Length)) %>%
  ggplot(aes(x = Species, y = sepal_length_mean, fill = Species)) + 
  geom_col()

Any changes to the registry specific colour schemes should be communicated with the package maintainer.



farhadsalimi/registryr documentation built on June 24, 2022, 12:23 a.m.