├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── addin.R └── explode.R ├── README.Rmd ├── README.md ├── boom.Rproj ├── inst └── rstudio │ └── addins.dcf └── man ├── boom.Rd └── figures └── logo.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(boom) 4 | -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/R/addin.R -------------------------------------------------------------------------------- /R/explode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/R/explode.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/README.md -------------------------------------------------------------------------------- /boom.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/boom.Rproj -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/boom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/man/boom.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/boom/HEAD/man/figures/logo.png --------------------------------------------------------------------------------