├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── theme_ap.R ├── README.md ├── aptheme.Rproj ├── man └── theme_ap.Rd └── tests ├── testthat.R └── testthat ├── test_colordefs.R └── test_scatterplot.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/theme_ap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/R/theme_ap.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/README.md -------------------------------------------------------------------------------- /aptheme.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/aptheme.Rproj -------------------------------------------------------------------------------- /man/theme_ap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/man/theme_ap.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_colordefs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/tests/testthat/test_colordefs.R -------------------------------------------------------------------------------- /tests/testthat/test_scatterplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/aptheme/HEAD/tests/testthat/test_scatterplot.R --------------------------------------------------------------------------------