Skip to content

Instantly share code, notes, and snippets.

@CerebralMastication
Created January 20, 2010 23:16
Show Gist options
  • Save CerebralMastication/282396 to your computer and use it in GitHub Desktop.
Save CerebralMastication/282396 to your computer and use it in GitHub Desktop.
#fast example of hex color + transparency in ggplot2
df <- data.frame(x=rnorm(100))
p <- ggplot(df, aes(x=x))
p + geom_density(fill = alpha("#335785", .6))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment