├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R └── plotluck.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── inst ├── doc │ └── plotluck.html └── image │ └── README-unnamed-chunk-2-1.png ├── man ├── plotluck.Rd ├── plotluck.options.Rd └── sample.plotluck.Rd ├── plotluck.Rproj ├── tests ├── testthat.R └── testthat │ └── test_plotluck.R └── vignettes └── plotluck.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014 2 | COPYRIGHT HOLDER: Stefan Schroedl -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/plotluck.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/R/plotluck.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/doc/plotluck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/inst/doc/plotluck.html -------------------------------------------------------------------------------- /inst/image/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/inst/image/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/plotluck.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/man/plotluck.Rd -------------------------------------------------------------------------------- /man/plotluck.options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/man/plotluck.options.Rd -------------------------------------------------------------------------------- /man/sample.plotluck.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/man/sample.plotluck.Rd -------------------------------------------------------------------------------- /plotluck.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/plotluck.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_plotluck.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/tests/testthat/test_plotluck.R -------------------------------------------------------------------------------- /vignettes/plotluck.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-schroedl/plotluck/HEAD/vignettes/plotluck.Rmd --------------------------------------------------------------------------------