Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 920 Bytes

project-palette-info.md

File metadata and controls

43 lines (32 loc) · 920 Bytes
title author date output
Project Pallette Info
Aryss Hearne
3/7/2021
html_document
keep_md
true
library(ggthemes)
library(paletteer)

#Pallette Install: One for continious data, one for discrete

#devtools::install_github("johannesbjork/LaCroixColoR")
colors<- LaCroixColoR::lacroix_palette("Pamplemousse", type = "discrete")
colors_cont<-LaCroixColoR::lacroix_palette("Pamplemousse", n = 187, type = "continuous") #as long as the data you're describing is under 187 points long
barplot(rep(1,14), axes=FALSE, col=colors)

#barplot(rep(1,100), axes=FALSE, col=colors_cont)

Graph Aesthetics:

#plot junk here
#theme_solarized()+
  #scale_color_manual(values=colors)+
  #theme(legend.position="top",
        #axis.text.x=element_text(angle=60, hjust=1))+
#more plot junk here