├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── .gitlab-ci.yml ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── get_dataset.R └── utils-pipe.R ├── README.md ├── inseeLocalData.Rproj ├── man ├── get_dataset.Rd └── pipe.Rd └── tests ├── fixtures ├── na5_b-entr_individuelle-geo2017REE2017-com-44115.yml └── popleg2020-com-44115.yml ├── testthat.R └── testthat ├── helper-inseeLocalData.R └── test-get_dataset.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | tests/fixtures/**/* -diff 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/get_dataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/R/get_dataset.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/README.md -------------------------------------------------------------------------------- /inseeLocalData.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/inseeLocalData.Rproj -------------------------------------------------------------------------------- /man/get_dataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/man/get_dataset.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /tests/fixtures/na5_b-entr_individuelle-geo2017REE2017-com-44115.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/tests/fixtures/na5_b-entr_individuelle-geo2017REE2017-com-44115.yml -------------------------------------------------------------------------------- /tests/fixtures/popleg2020-com-44115.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/tests/fixtures/popleg2020-com-44115.yml -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-inseeLocalData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/tests/testthat/helper-inseeLocalData.R -------------------------------------------------------------------------------- /tests/testthat/test-get_dataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InseeFrLab/inseeLocalData/HEAD/tests/testthat/test-get_dataset.R --------------------------------------------------------------------------------