├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── package.R ├── README.md ├── autoinst.Rproj └── man └── autoinst.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Jim Hester 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(autoinst) 4 | -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/R/package.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/README.md -------------------------------------------------------------------------------- /autoinst.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/autoinst.Rproj -------------------------------------------------------------------------------- /man/autoinst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/autoinst/HEAD/man/autoinst.Rd --------------------------------------------------------------------------------