├── .Rbuildignore ├── .gitignore ├── LICENSE ├── README.Rmd ├── README.md ├── ggplot2_themes_in_github.Rproj ├── ggplot2_themes_in_github.csv └── update.sh /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/README.md -------------------------------------------------------------------------------- /ggplot2_themes_in_github.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/ggplot2_themes_in_github.Rproj -------------------------------------------------------------------------------- /ggplot2_themes_in_github.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcastagnetto/ggplot2_themes_in_github/HEAD/ggplot2_themes_in_github.csv -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | Rscript build-readme.R 3 | --------------------------------------------------------------------------------