├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── anger_palette.R ├── combo_palette.R ├── hardwired_palette.R ├── justice_palette.R ├── killem_palette.R ├── lightning_palette.R ├── load_palette.R ├── magnetic_palette.R ├── metallica_palette.R ├── metallicart.R ├── puppets_palette.R ├── reload_palette.R └── seasons_palette.R ├── _pkgdown.yml ├── docs └── tmp.txt ├── man ├── anger_pal.Rd ├── combo_pal.Rd ├── figures │ ├── README-ajfa-1.png │ ├── README-ajfa-2.png │ ├── README-combo-1.png │ ├── README-destruct-1.png │ ├── README-destruct-2.png │ ├── README-first4-1.png │ ├── README-first4-2.png │ ├── README-first4-3.png │ ├── README-first4-4.png │ ├── README-frantic-1.png │ ├── README-frantic-2.png │ ├── README-frantic-3.png │ ├── README-frantic-4.png │ ├── README-kill-1.png │ ├── README-kill-2.png │ ├── README-load-1.png │ ├── README-load-2.png │ ├── README-magnetic-1.png │ ├── README-magnetic-2.png │ ├── README-metallica-1.png │ ├── README-metallica-2.png │ ├── README-mop-1.png │ ├── README-mop-2.png │ ├── README-reload-1.png │ ├── README-reload-2.png │ ├── README-roam-1.png │ ├── README-roam-2.png │ ├── README-roam-3.png │ ├── README-rtl-1.png │ ├── README-rtl-2.png │ ├── README-seasons-1.png │ ├── README-seasons-2.png │ ├── README-stanger-1.png │ ├── README-stanger-2.png │ ├── metallicart.jpg │ └── metallicart.png ├── hardwired_pal.Rd ├── justice_pal.Rd ├── killem_pal.Rd ├── lightning_pal.Rd ├── load_pal.Rd ├── magnetic_pal.Rd ├── metalli_palette.Rd ├── metallica_pal.Rd ├── puppets_pal.Rd ├── reload_pal.Rd └── seasons_pal.Rd ├── metallicaRt.Rproj ├── readme.md └── readme.rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: John MacKintosh 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/anger_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/anger_palette.R -------------------------------------------------------------------------------- /R/combo_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/combo_palette.R -------------------------------------------------------------------------------- /R/hardwired_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/hardwired_palette.R -------------------------------------------------------------------------------- /R/justice_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/justice_palette.R -------------------------------------------------------------------------------- /R/killem_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/killem_palette.R -------------------------------------------------------------------------------- /R/lightning_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/lightning_palette.R -------------------------------------------------------------------------------- /R/load_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/load_palette.R -------------------------------------------------------------------------------- /R/magnetic_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/magnetic_palette.R -------------------------------------------------------------------------------- /R/metallica_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/metallica_palette.R -------------------------------------------------------------------------------- /R/metallicart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/metallicart.R -------------------------------------------------------------------------------- /R/puppets_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/puppets_palette.R -------------------------------------------------------------------------------- /R/reload_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/reload_palette.R -------------------------------------------------------------------------------- /R/seasons_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/R/seasons_palette.R -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /docs/tmp.txt: -------------------------------------------------------------------------------- 1 | t -------------------------------------------------------------------------------- /man/anger_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/anger_pal.Rd -------------------------------------------------------------------------------- /man/combo_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/combo_pal.Rd -------------------------------------------------------------------------------- /man/figures/README-ajfa-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-ajfa-1.png -------------------------------------------------------------------------------- /man/figures/README-ajfa-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-ajfa-2.png -------------------------------------------------------------------------------- /man/figures/README-combo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-combo-1.png -------------------------------------------------------------------------------- /man/figures/README-destruct-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-destruct-1.png -------------------------------------------------------------------------------- /man/figures/README-destruct-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-destruct-2.png -------------------------------------------------------------------------------- /man/figures/README-first4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-first4-1.png -------------------------------------------------------------------------------- /man/figures/README-first4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-first4-2.png -------------------------------------------------------------------------------- /man/figures/README-first4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-first4-3.png -------------------------------------------------------------------------------- /man/figures/README-first4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-first4-4.png -------------------------------------------------------------------------------- /man/figures/README-frantic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-frantic-1.png -------------------------------------------------------------------------------- /man/figures/README-frantic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-frantic-2.png -------------------------------------------------------------------------------- /man/figures/README-frantic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-frantic-3.png -------------------------------------------------------------------------------- /man/figures/README-frantic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-frantic-4.png -------------------------------------------------------------------------------- /man/figures/README-kill-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-kill-1.png -------------------------------------------------------------------------------- /man/figures/README-kill-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-kill-2.png -------------------------------------------------------------------------------- /man/figures/README-load-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-load-1.png -------------------------------------------------------------------------------- /man/figures/README-load-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-load-2.png -------------------------------------------------------------------------------- /man/figures/README-magnetic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-magnetic-1.png -------------------------------------------------------------------------------- /man/figures/README-magnetic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-magnetic-2.png -------------------------------------------------------------------------------- /man/figures/README-metallica-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-metallica-1.png -------------------------------------------------------------------------------- /man/figures/README-metallica-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-metallica-2.png -------------------------------------------------------------------------------- /man/figures/README-mop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-mop-1.png -------------------------------------------------------------------------------- /man/figures/README-mop-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-mop-2.png -------------------------------------------------------------------------------- /man/figures/README-reload-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-reload-1.png -------------------------------------------------------------------------------- /man/figures/README-reload-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-reload-2.png -------------------------------------------------------------------------------- /man/figures/README-roam-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-roam-1.png -------------------------------------------------------------------------------- /man/figures/README-roam-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-roam-2.png -------------------------------------------------------------------------------- /man/figures/README-roam-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-roam-3.png -------------------------------------------------------------------------------- /man/figures/README-rtl-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-rtl-1.png -------------------------------------------------------------------------------- /man/figures/README-rtl-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-rtl-2.png -------------------------------------------------------------------------------- /man/figures/README-seasons-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-seasons-1.png -------------------------------------------------------------------------------- /man/figures/README-seasons-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-seasons-2.png -------------------------------------------------------------------------------- /man/figures/README-stanger-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-stanger-1.png -------------------------------------------------------------------------------- /man/figures/README-stanger-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/README-stanger-2.png -------------------------------------------------------------------------------- /man/figures/metallicart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/metallicart.jpg -------------------------------------------------------------------------------- /man/figures/metallicart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/figures/metallicart.png -------------------------------------------------------------------------------- /man/hardwired_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/hardwired_pal.Rd -------------------------------------------------------------------------------- /man/justice_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/justice_pal.Rd -------------------------------------------------------------------------------- /man/killem_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/killem_pal.Rd -------------------------------------------------------------------------------- /man/lightning_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/lightning_pal.Rd -------------------------------------------------------------------------------- /man/load_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/load_pal.Rd -------------------------------------------------------------------------------- /man/magnetic_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/magnetic_pal.Rd -------------------------------------------------------------------------------- /man/metalli_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/metalli_palette.Rd -------------------------------------------------------------------------------- /man/metallica_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/metallica_pal.Rd -------------------------------------------------------------------------------- /man/puppets_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/puppets_pal.Rd -------------------------------------------------------------------------------- /man/reload_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/reload_pal.Rd -------------------------------------------------------------------------------- /man/seasons_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/man/seasons_pal.Rd -------------------------------------------------------------------------------- /metallicaRt.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/metallicaRt.Rproj -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/readme.md -------------------------------------------------------------------------------- /readme.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmackintosh/metallicaRt/HEAD/readme.rmd --------------------------------------------------------------------------------