Skip to content

Instantly share code, notes, and snippets.

@yutannihilation
Created February 16, 2019 15:00
Show Gist options
  • Save yutannihilation/775622a967b82b01f9684c5e3a1d962d to your computer and use it in GitHub Desktop.
Save yutannihilation/775622a967b82b01f9684c5e3a1d962d to your computer and use it in GitHub Desktop.
library(gghighlight)
#> Loading required package: ggplot2

ggplot(economics_long, aes(date, value01, colour = variable)) +
  geom_line() +
  gghighlight()
#> Warning: Detecting old grouped_df format, replacing `vars` attribute by
#> `groups`
#> label_key: variable

Created on 2019-02-16 by the reprex package (v0.2.1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment