├── .Rbuildignore ├── .Rprofile ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── from_import.R ├── install_packages.R ├── libraries.R ├── package.R ├── packages.R └── utils.R ├── README.md ├── cran-comments.md ├── man ├── from_import.Rd ├── install_package.Rd ├── install_packages.Rd ├── is.package_obj.Rd ├── libraries.Rd ├── load_package.Rd ├── package.Rd └── packages.Rd └── vignettes ├── easypackages-vignette.Rmd └── easypackages-vignette.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/.Rprofile -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Jake Sherman 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/from_import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/R/from_import.R -------------------------------------------------------------------------------- /R/install_packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/R/install_packages.R -------------------------------------------------------------------------------- /R/libraries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/R/libraries.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/R/package.R -------------------------------------------------------------------------------- /R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/R/packages.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/from_import.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/from_import.Rd -------------------------------------------------------------------------------- /man/install_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/install_package.Rd -------------------------------------------------------------------------------- /man/install_packages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/install_packages.Rd -------------------------------------------------------------------------------- /man/is.package_obj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/is.package_obj.Rd -------------------------------------------------------------------------------- /man/libraries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/libraries.Rd -------------------------------------------------------------------------------- /man/load_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/load_package.Rd -------------------------------------------------------------------------------- /man/package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/package.Rd -------------------------------------------------------------------------------- /man/packages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/man/packages.Rd -------------------------------------------------------------------------------- /vignettes/easypackages-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/vignettes/easypackages-vignette.Rmd -------------------------------------------------------------------------------- /vignettes/easypackages-vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakesherman/easypackages/HEAD/vignettes/easypackages-vignette.html --------------------------------------------------------------------------------