Skip to content

Instantly share code, notes, and snippets.

@dgkeyes
Last active September 14, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgkeyes/788f118e1a26b6cac4ff64d45e73183d to your computer and use it in GitHub Desktop.
Save dgkeyes/788f118e1a26b6cac4ff64d45e73183d to your computer and use it in GitHub Desktop.
Facets example - not facetted plot
regions_plot <- ggplot(data = regions,
aes(x = year_label,
y = n,
fill = region)) +
geom_area() +
tfff_theme +
tfff_fill_colors +
labs(title = "Number of applicants by region",
fill = "")
regions_plot +
theme(legend.position = "right")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment