├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── casting.R ├── color_palette.R ├── cpcinema.R ├── extract_color_pal_cinema.R ├── pal_from_post.R ├── selector.R └── utils-pipe.R ├── README.Rmd ├── README.md ├── cpcinema.Rproj ├── data-raw ├── 2021-03-14-pals.R ├── available_pals-deprecated.R ├── data.R └── historic-pals │ ├── 2021-03-14.json │ └── old-pals.json ├── data ├── available_pals.rda └── volcano_df.rda ├── inst └── img │ ├── joker.jpg │ └── queens-gambit.png ├── man ├── color_palette.Rd ├── extract_cpc_pal.Rd ├── figures │ ├── README-unnamed-chunk-3-1.png │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ ├── README-unnamed-chunk-7-1.png │ ├── README-unnamed-chunk-8-1.png │ └── README-unnamed-chunk-9-1.png ├── new_palette.Rd ├── pal_from_post.Rd ├── palette_style.Rd ├── pipe.Rd └── vctrs-cpcinema.Rd └── plot.R /.gitignore: -------------------------------------------------------------------------------- 1 | .Rbuildignore 2 | .Rhistory 3 | .Rproj.user/ 4 | .httr-oauth 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/casting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/casting.R -------------------------------------------------------------------------------- /R/color_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/color_palette.R -------------------------------------------------------------------------------- /R/cpcinema.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/cpcinema.R -------------------------------------------------------------------------------- /R/extract_color_pal_cinema.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/extract_color_pal_cinema.R -------------------------------------------------------------------------------- /R/pal_from_post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/pal_from_post.R -------------------------------------------------------------------------------- /R/selector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/selector.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/README.md -------------------------------------------------------------------------------- /cpcinema.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/cpcinema.Rproj -------------------------------------------------------------------------------- /data-raw/2021-03-14-pals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data-raw/2021-03-14-pals.R -------------------------------------------------------------------------------- /data-raw/available_pals-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data-raw/available_pals-deprecated.R -------------------------------------------------------------------------------- /data-raw/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data-raw/data.R -------------------------------------------------------------------------------- /data-raw/historic-pals/2021-03-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data-raw/historic-pals/2021-03-14.json -------------------------------------------------------------------------------- /data-raw/historic-pals/old-pals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data-raw/historic-pals/old-pals.json -------------------------------------------------------------------------------- /data/available_pals.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data/available_pals.rda -------------------------------------------------------------------------------- /data/volcano_df.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/data/volcano_df.rda -------------------------------------------------------------------------------- /inst/img/joker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/inst/img/joker.jpg -------------------------------------------------------------------------------- /inst/img/queens-gambit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/inst/img/queens-gambit.png -------------------------------------------------------------------------------- /man/color_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/color_palette.Rd -------------------------------------------------------------------------------- /man/extract_cpc_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/extract_cpc_pal.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/new_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/new_palette.Rd -------------------------------------------------------------------------------- /man/pal_from_post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/pal_from_post.Rd -------------------------------------------------------------------------------- /man/palette_style.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/palette_style.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/vctrs-cpcinema.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/man/vctrs-cpcinema.Rd -------------------------------------------------------------------------------- /plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosiahParry/cpcinema/HEAD/plot.R --------------------------------------------------------------------------------