├── .DS_Store ├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CRAN-SUBMISSION ├── DESCRIPTION ├── Logo.png ├── NAMESPACE ├── NEWS.md ├── PortalHacienda-CRAN.Rproj ├── PortalHacienda-Logo-01.png ├── PortalHacienda-Logo.ai ├── R └── FuncionesAcceso.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── man ├── Forecast.Rd ├── Get.Rd ├── PortalHacienda.Rd ├── Search_online.Rd ├── figures │ ├── README-example2-1.png │ ├── README-example3-1.png │ └── logo.png └── vForecast.Rd ├── revdep ├── .gitignore └── email.yml └── vignettes ├── .gitignore └── Tutorial.Rmd /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/Logo.png -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/NEWS.md -------------------------------------------------------------------------------- /PortalHacienda-CRAN.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/PortalHacienda-CRAN.Rproj -------------------------------------------------------------------------------- /PortalHacienda-Logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/PortalHacienda-Logo-01.png -------------------------------------------------------------------------------- /PortalHacienda-Logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/PortalHacienda-Logo.ai -------------------------------------------------------------------------------- /R/FuncionesAcceso.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/R/FuncionesAcceso.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/Forecast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/Forecast.Rd -------------------------------------------------------------------------------- /man/Get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/Get.Rd -------------------------------------------------------------------------------- /man/PortalHacienda.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/PortalHacienda.Rd -------------------------------------------------------------------------------- /man/Search_online.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/Search_online.Rd -------------------------------------------------------------------------------- /man/figures/README-example2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/figures/README-example2-1.png -------------------------------------------------------------------------------- /man/figures/README-example3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/figures/README-example3-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/vForecast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/man/vForecast.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/Tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmgarciadiaz/PortalHacienda-CRAN/HEAD/vignettes/Tutorial.Rmd --------------------------------------------------------------------------------