├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── darkly_format.R ├── darklyplot.R ├── mtg_rate.R ├── mtg_rate.RData └── theme_dark2.R ├── README.Rmd ├── README.md ├── darklyplot.Rproj ├── data └── mtg_rate.RData ├── doc ├── using-darklyplot.R ├── using-darklyplot.Rmd └── using-darklyplot.html ├── man ├── darkly_format.Rd ├── darklyplot.Rd ├── figures │ ├── README-example-1.png │ ├── README-example-3-1.png │ ├── README-example2-1.png │ └── README-pressure-1.png ├── mtg_rate.Rd └── theme_dark2.Rd └── vignettes ├── .gitignore └── using-darklyplot.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/darkly_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/R/darkly_format.R -------------------------------------------------------------------------------- /R/darklyplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/R/darklyplot.R -------------------------------------------------------------------------------- /R/mtg_rate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/R/mtg_rate.R -------------------------------------------------------------------------------- /R/mtg_rate.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/R/mtg_rate.RData -------------------------------------------------------------------------------- /R/theme_dark2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/R/theme_dark2.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/README.md -------------------------------------------------------------------------------- /darklyplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/darklyplot.Rproj -------------------------------------------------------------------------------- /data/mtg_rate.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/data/mtg_rate.RData -------------------------------------------------------------------------------- /doc/using-darklyplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/doc/using-darklyplot.R -------------------------------------------------------------------------------- /doc/using-darklyplot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/doc/using-darklyplot.Rmd -------------------------------------------------------------------------------- /doc/using-darklyplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/doc/using-darklyplot.html -------------------------------------------------------------------------------- /man/darkly_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/darkly_format.Rd -------------------------------------------------------------------------------- /man/darklyplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/darklyplot.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-example-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/figures/README-example-3-1.png -------------------------------------------------------------------------------- /man/figures/README-example2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/figures/README-example2-1.png -------------------------------------------------------------------------------- /man/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/figures/README-pressure-1.png -------------------------------------------------------------------------------- /man/mtg_rate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/mtg_rate.Rd -------------------------------------------------------------------------------- /man/theme_dark2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/man/theme_dark2.Rd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.R 2 | -------------------------------------------------------------------------------- /vignettes/using-darklyplot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenkiefer/darklyplot/HEAD/vignettes/using-darklyplot.Rmd --------------------------------------------------------------------------------