├── .Rbuildignore ├── .editorconfig ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yml │ └── test-coverage.yaml ├── .gitignore ├── CONTRIBUTING.md ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── characterize.R ├── compression.R ├── convert.R ├── export.R ├── export_list.R ├── export_methods.R ├── extensions.R ├── gather_attrs.R ├── import.R ├── import_list.R ├── import_methods.R ├── onLoad.R ├── remote_to_local.R ├── rio.R ├── set_class.R ├── standardize_attributes.R ├── suggestions.R ├── sysdata.rda └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── data-raw ├── convert.R ├── obsolete │ ├── arg_reconcile.R │ ├── is_file_text.R │ ├── old_logo │ │ ├── logo.png │ │ └── logo.svg │ ├── test_arg_reconcile.R │ └── test_is_file_text.R ├── readme.md └── single.json ├── inst └── CITATION ├── man ├── characterize.Rd ├── convert.Rd ├── export.Rd ├── export_list.Rd ├── figures │ ├── logo.png │ └── logo.svg ├── gather_attrs.Rd ├── get_info.Rd ├── import.Rd ├── import_list.Rd ├── install_formats.Rd └── rio.Rd ├── po └── R-rio.pot ├── rio.Rproj ├── starwars.csv ├── starwars.xlsx ├── tests ├── testdata │ ├── br-in-header.html │ ├── br-in-td.html │ ├── example.csvy │ ├── example.xlsm │ ├── iris.xls │ ├── iris_no_extension_xls │ ├── mtcars.ods │ ├── noheader.csv │ ├── th-as-row-element.html │ ├── two-tbody.html │ └── twotables.html ├── testthat.R └── testthat │ ├── test_characterize.R │ ├── test_check_file.R │ ├── test_compress.R │ ├── test_convert.R │ ├── test_create_outfiles.R │ ├── test_errors.R │ ├── test_export_corner_cases.R │ ├── test_export_list.R │ ├── test_extensions.R │ ├── test_format_R.R │ ├── test_format_arff.R │ ├── test_format_csv.R │ ├── test_format_csvy.R │ ├── test_format_dbf.R │ ├── test_format_dif.R │ ├── test_format_dta.R │ ├── test_format_eviews.R │ ├── test_format_external_packages.R │ ├── test_format_feather.R │ ├── test_format_fortran.R │ ├── test_format_fst.R │ ├── test_format_fwf.R │ ├── test_format_html.R │ ├── test_format_json.R │ ├── test_format_matlab.R │ ├── test_format_mtp.R │ ├── test_format_ods.R │ ├── test_format_parquet.R │ ├── test_format_psv.R │ ├── test_format_pzfx.R │ ├── test_format_qs.R │ ├── test_format_qs2.R │ ├── test_format_rdata.R │ ├── test_format_rds.R │ ├── test_format_rec.R │ ├── test_format_sas.R │ ├── test_format_sav.R │ ├── test_format_syd.R │ ├── test_format_tsv.R │ ├── test_format_xls.R │ ├── test_format_xml.R │ ├── test_format_yml.R │ ├── test_gather_attrs.R │ ├── test_guess.R │ ├── test_identical.R │ ├── test_import_list.R │ ├── test_mapping.R │ ├── test_matrix.R │ ├── test_remote.R │ ├── test_set_class.R │ ├── test_suggestions.R │ └── test_trust.R └── vignettes ├── .gitignore ├── extension.Rmd ├── labelled.Rmd ├── philosophy.Rmd ├── remap.Rmd └── rio.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/.github/workflows/pkgdown.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/characterize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/characterize.R -------------------------------------------------------------------------------- /R/compression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/compression.R -------------------------------------------------------------------------------- /R/convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/convert.R -------------------------------------------------------------------------------- /R/export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/export.R -------------------------------------------------------------------------------- /R/export_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/export_list.R -------------------------------------------------------------------------------- /R/export_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/export_methods.R -------------------------------------------------------------------------------- /R/extensions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/extensions.R -------------------------------------------------------------------------------- /R/gather_attrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/gather_attrs.R -------------------------------------------------------------------------------- /R/import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/import.R -------------------------------------------------------------------------------- /R/import_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/import_list.R -------------------------------------------------------------------------------- /R/import_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/import_methods.R -------------------------------------------------------------------------------- /R/onLoad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/onLoad.R -------------------------------------------------------------------------------- /R/remote_to_local.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/remote_to_local.R -------------------------------------------------------------------------------- /R/rio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/rio.R -------------------------------------------------------------------------------- /R/set_class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/set_class.R -------------------------------------------------------------------------------- /R/standardize_attributes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/standardize_attributes.R -------------------------------------------------------------------------------- /R/suggestions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/suggestions.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/codecov.yml -------------------------------------------------------------------------------- /data-raw/convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/convert.R -------------------------------------------------------------------------------- /data-raw/obsolete/arg_reconcile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/obsolete/arg_reconcile.R -------------------------------------------------------------------------------- /data-raw/obsolete/is_file_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/obsolete/is_file_text.R -------------------------------------------------------------------------------- /data-raw/obsolete/old_logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/obsolete/old_logo/logo.png -------------------------------------------------------------------------------- /data-raw/obsolete/old_logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/obsolete/old_logo/logo.svg -------------------------------------------------------------------------------- /data-raw/obsolete/test_arg_reconcile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/obsolete/test_arg_reconcile.R -------------------------------------------------------------------------------- /data-raw/obsolete/test_is_file_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/obsolete/test_is_file_text.R -------------------------------------------------------------------------------- /data-raw/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/readme.md -------------------------------------------------------------------------------- /data-raw/single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/data-raw/single.json -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/characterize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/characterize.Rd -------------------------------------------------------------------------------- /man/convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/convert.Rd -------------------------------------------------------------------------------- /man/export.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/export.Rd -------------------------------------------------------------------------------- /man/export_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/export_list.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/gather_attrs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/gather_attrs.Rd -------------------------------------------------------------------------------- /man/get_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/get_info.Rd -------------------------------------------------------------------------------- /man/import.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/import.Rd -------------------------------------------------------------------------------- /man/import_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/import_list.Rd -------------------------------------------------------------------------------- /man/install_formats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/install_formats.Rd -------------------------------------------------------------------------------- /man/rio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/man/rio.Rd -------------------------------------------------------------------------------- /po/R-rio.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/po/R-rio.pot -------------------------------------------------------------------------------- /rio.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/rio.Rproj -------------------------------------------------------------------------------- /starwars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/starwars.csv -------------------------------------------------------------------------------- /starwars.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/starwars.xlsx -------------------------------------------------------------------------------- /tests/testdata/br-in-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/br-in-header.html -------------------------------------------------------------------------------- /tests/testdata/br-in-td.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/br-in-td.html -------------------------------------------------------------------------------- /tests/testdata/example.csvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/example.csvy -------------------------------------------------------------------------------- /tests/testdata/example.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/example.xlsm -------------------------------------------------------------------------------- /tests/testdata/iris.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/iris.xls -------------------------------------------------------------------------------- /tests/testdata/iris_no_extension_xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/iris_no_extension_xls -------------------------------------------------------------------------------- /tests/testdata/mtcars.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/mtcars.ods -------------------------------------------------------------------------------- /tests/testdata/noheader.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/noheader.csv -------------------------------------------------------------------------------- /tests/testdata/th-as-row-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/th-as-row-element.html -------------------------------------------------------------------------------- /tests/testdata/two-tbody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/two-tbody.html -------------------------------------------------------------------------------- /tests/testdata/twotables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testdata/twotables.html -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_characterize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_characterize.R -------------------------------------------------------------------------------- /tests/testthat/test_check_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_check_file.R -------------------------------------------------------------------------------- /tests/testthat/test_compress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_compress.R -------------------------------------------------------------------------------- /tests/testthat/test_convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_convert.R -------------------------------------------------------------------------------- /tests/testthat/test_create_outfiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_create_outfiles.R -------------------------------------------------------------------------------- /tests/testthat/test_errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_errors.R -------------------------------------------------------------------------------- /tests/testthat/test_export_corner_cases.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_export_corner_cases.R -------------------------------------------------------------------------------- /tests/testthat/test_export_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_export_list.R -------------------------------------------------------------------------------- /tests/testthat/test_extensions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_extensions.R -------------------------------------------------------------------------------- /tests/testthat/test_format_R.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_R.R -------------------------------------------------------------------------------- /tests/testthat/test_format_arff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_arff.R -------------------------------------------------------------------------------- /tests/testthat/test_format_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_csv.R -------------------------------------------------------------------------------- /tests/testthat/test_format_csvy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_csvy.R -------------------------------------------------------------------------------- /tests/testthat/test_format_dbf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_dbf.R -------------------------------------------------------------------------------- /tests/testthat/test_format_dif.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_dif.R -------------------------------------------------------------------------------- /tests/testthat/test_format_dta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_dta.R -------------------------------------------------------------------------------- /tests/testthat/test_format_eviews.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_eviews.R -------------------------------------------------------------------------------- /tests/testthat/test_format_external_packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_external_packages.R -------------------------------------------------------------------------------- /tests/testthat/test_format_feather.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_feather.R -------------------------------------------------------------------------------- /tests/testthat/test_format_fortran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_fortran.R -------------------------------------------------------------------------------- /tests/testthat/test_format_fst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_fst.R -------------------------------------------------------------------------------- /tests/testthat/test_format_fwf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_fwf.R -------------------------------------------------------------------------------- /tests/testthat/test_format_html.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_html.R -------------------------------------------------------------------------------- /tests/testthat/test_format_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_json.R -------------------------------------------------------------------------------- /tests/testthat/test_format_matlab.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_matlab.R -------------------------------------------------------------------------------- /tests/testthat/test_format_mtp.R: -------------------------------------------------------------------------------- 1 | ##test_that("Import from Minitab", {}) 2 | -------------------------------------------------------------------------------- /tests/testthat/test_format_ods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_ods.R -------------------------------------------------------------------------------- /tests/testthat/test_format_parquet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_parquet.R -------------------------------------------------------------------------------- /tests/testthat/test_format_psv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_psv.R -------------------------------------------------------------------------------- /tests/testthat/test_format_pzfx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_pzfx.R -------------------------------------------------------------------------------- /tests/testthat/test_format_qs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_qs.R -------------------------------------------------------------------------------- /tests/testthat/test_format_qs2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_qs2.R -------------------------------------------------------------------------------- /tests/testthat/test_format_rdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_rdata.R -------------------------------------------------------------------------------- /tests/testthat/test_format_rds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_rds.R -------------------------------------------------------------------------------- /tests/testthat/test_format_rec.R: -------------------------------------------------------------------------------- 1 | #test_that("Import from Epiinfo", {}) 2 | -------------------------------------------------------------------------------- /tests/testthat/test_format_sas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_sas.R -------------------------------------------------------------------------------- /tests/testthat/test_format_sav.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_sav.R -------------------------------------------------------------------------------- /tests/testthat/test_format_syd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_syd.R -------------------------------------------------------------------------------- /tests/testthat/test_format_tsv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_tsv.R -------------------------------------------------------------------------------- /tests/testthat/test_format_xls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_xls.R -------------------------------------------------------------------------------- /tests/testthat/test_format_xml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_xml.R -------------------------------------------------------------------------------- /tests/testthat/test_format_yml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_format_yml.R -------------------------------------------------------------------------------- /tests/testthat/test_gather_attrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_gather_attrs.R -------------------------------------------------------------------------------- /tests/testthat/test_guess.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_guess.R -------------------------------------------------------------------------------- /tests/testthat/test_identical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_identical.R -------------------------------------------------------------------------------- /tests/testthat/test_import_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_import_list.R -------------------------------------------------------------------------------- /tests/testthat/test_mapping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_mapping.R -------------------------------------------------------------------------------- /tests/testthat/test_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_matrix.R -------------------------------------------------------------------------------- /tests/testthat/test_remote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_remote.R -------------------------------------------------------------------------------- /tests/testthat/test_set_class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_set_class.R -------------------------------------------------------------------------------- /tests/testthat/test_suggestions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_suggestions.R -------------------------------------------------------------------------------- /tests/testthat/test_trust.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/tests/testthat/test_trust.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/extension.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/vignettes/extension.Rmd -------------------------------------------------------------------------------- /vignettes/labelled.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/vignettes/labelled.Rmd -------------------------------------------------------------------------------- /vignettes/philosophy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/vignettes/philosophy.Rmd -------------------------------------------------------------------------------- /vignettes/remap.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/vignettes/remap.Rmd -------------------------------------------------------------------------------- /vignettes/rio.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesistsa/rio/HEAD/vignettes/rio.Rmd --------------------------------------------------------------------------------