├── .Rbuildignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── RStata-package.R ├── chooseStataBin.R └── stata.R ├── README.md └── man ├── RStata.Rd ├── chooseStataBin.Rd └── stata.Rd /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^\.travis\.yml 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: r 2 | sudo: required 3 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RStata-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/R/RStata-package.R -------------------------------------------------------------------------------- /R/chooseStataBin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/R/chooseStataBin.R -------------------------------------------------------------------------------- /R/stata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/R/stata.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/README.md -------------------------------------------------------------------------------- /man/RStata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/man/RStata.Rd -------------------------------------------------------------------------------- /man/chooseStataBin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/man/chooseStataBin.Rd -------------------------------------------------------------------------------- /man/stata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbraglia/RStata/HEAD/man/stata.Rd --------------------------------------------------------------------------------