├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── README.md ├── best_practices_per_language ├── README.md ├── changelog_r.md ├── r_best_practices.md └── r_quickstart_guide.md ├── changelog.md ├── contributing ├── README.md └── iqss_code_of_conduct.md ├── documentation ├── README.md ├── img │ └── zelig_readme.png ├── rmarkdown_readme_intro.md └── roxygen_intro.md ├── img └── iqss_long_logo.png ├── iqss_sss_best_practices.md ├── report_card ├── README.md ├── changelog.md ├── img │ └── iqss_report_card_logo_v1.png └── iqss_report_card_spec.md └── testing ├── README.md ├── img └── r-dev-flow.png └── recommended_testing_tools_R.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /best_practices_per_language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/best_practices_per_language/README.md -------------------------------------------------------------------------------- /best_practices_per_language/changelog_r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/best_practices_per_language/changelog_r.md -------------------------------------------------------------------------------- /best_practices_per_language/r_best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/best_practices_per_language/r_best_practices.md -------------------------------------------------------------------------------- /best_practices_per_language/r_quickstart_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/best_practices_per_language/r_quickstart_guide.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/contributing/README.md -------------------------------------------------------------------------------- /contributing/iqss_code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/contributing/iqss_code_of_conduct.md -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/img/zelig_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/documentation/img/zelig_readme.png -------------------------------------------------------------------------------- /documentation/rmarkdown_readme_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/documentation/rmarkdown_readme_intro.md -------------------------------------------------------------------------------- /documentation/roxygen_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/documentation/roxygen_intro.md -------------------------------------------------------------------------------- /img/iqss_long_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/img/iqss_long_logo.png -------------------------------------------------------------------------------- /iqss_sss_best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/iqss_sss_best_practices.md -------------------------------------------------------------------------------- /report_card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/report_card/README.md -------------------------------------------------------------------------------- /report_card/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/report_card/changelog.md -------------------------------------------------------------------------------- /report_card/img/iqss_report_card_logo_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/report_card/img/iqss_report_card_logo_v1.png -------------------------------------------------------------------------------- /report_card/iqss_report_card_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/report_card/iqss_report_card_spec.md -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/img/r-dev-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/testing/img/r-dev-flow.png -------------------------------------------------------------------------------- /testing/recommended_testing_tools_R.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/social_science_software_toolkit/HEAD/testing/recommended_testing_tools_R.md --------------------------------------------------------------------------------