knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Set Up

library(Rtistic)
library(ggplot2)
# make fake data for plots ----
points <- data.frame(x = 1:10, y = 1:10)
g_points <- ggplot(points, aes(x, y, col = factor(x))) + geom_point(size = 5)

Motivation for this Theme

ADD SOMETHING HERE!

Plot Theme

To understand this theme, first consider this basic ggplot.

g_points

Here is what my theme looks like.

g_points + 
  labs(title = "My fancy plot") +
  theme_test()

It also pairs nicely with this palette.

g_points + 
  scale_color_discrete_rtistic(palette = "test", extend = TRUE) + 
  labs(title = "My fancy plot") +
  theme_test()


emilyriederer/Rtistic documentation built on Feb. 3, 2020, 6:10 p.m.