├── .gitignore ├── LICENSE ├── README.md ├── data ├── SAS NOQUALSDATA.xls ├── SAS SIMD and domain ranks.xlsx ├── SAS WEIGHTS.xlsx ├── SIMD16 indicator data.xlsx └── SIMD16 ranks and domain ranks.xlsx ├── openSIMD_analysis.Rproj ├── results ├── domain_ranks.csv └── openSIMD_ranks.csv ├── scripts ├── calculations │ ├── domains.R │ └── openSIMD.R └── utils │ └── helpers.R └── tests ├── all_domains ├── compare_domains.R └── compare_domains.pdf ├── education_domain ├── education_results.pdf ├── education_test.R ├── rank_differences.pdf └── top_differences.csv ├── normalisation ├── normalisation_test.R ├── normalisation_test.pdf └── r_edu_normalised.csv ├── simd_comparison ├── compare_simd.R └── comparing_simd.pdf └── weights ├── r_edu_weights.csv └── weights_test.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/README.md -------------------------------------------------------------------------------- /data/SAS NOQUALSDATA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/data/SAS NOQUALSDATA.xls -------------------------------------------------------------------------------- /data/SAS SIMD and domain ranks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/data/SAS SIMD and domain ranks.xlsx -------------------------------------------------------------------------------- /data/SAS WEIGHTS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/data/SAS WEIGHTS.xlsx -------------------------------------------------------------------------------- /data/SIMD16 indicator data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/data/SIMD16 indicator data.xlsx -------------------------------------------------------------------------------- /data/SIMD16 ranks and domain ranks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/data/SIMD16 ranks and domain ranks.xlsx -------------------------------------------------------------------------------- /openSIMD_analysis.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/openSIMD_analysis.Rproj -------------------------------------------------------------------------------- /results/domain_ranks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/results/domain_ranks.csv -------------------------------------------------------------------------------- /results/openSIMD_ranks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/results/openSIMD_ranks.csv -------------------------------------------------------------------------------- /scripts/calculations/domains.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/scripts/calculations/domains.R -------------------------------------------------------------------------------- /scripts/calculations/openSIMD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/scripts/calculations/openSIMD.R -------------------------------------------------------------------------------- /scripts/utils/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/scripts/utils/helpers.R -------------------------------------------------------------------------------- /tests/all_domains/compare_domains.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/all_domains/compare_domains.R -------------------------------------------------------------------------------- /tests/all_domains/compare_domains.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/all_domains/compare_domains.pdf -------------------------------------------------------------------------------- /tests/education_domain/education_results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/education_domain/education_results.pdf -------------------------------------------------------------------------------- /tests/education_domain/education_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/education_domain/education_test.R -------------------------------------------------------------------------------- /tests/education_domain/rank_differences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/education_domain/rank_differences.pdf -------------------------------------------------------------------------------- /tests/education_domain/top_differences.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/education_domain/top_differences.csv -------------------------------------------------------------------------------- /tests/normalisation/normalisation_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/normalisation/normalisation_test.R -------------------------------------------------------------------------------- /tests/normalisation/normalisation_test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/normalisation/normalisation_test.pdf -------------------------------------------------------------------------------- /tests/normalisation/r_edu_normalised.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/normalisation/r_edu_normalised.csv -------------------------------------------------------------------------------- /tests/simd_comparison/compare_simd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/simd_comparison/compare_simd.R -------------------------------------------------------------------------------- /tests/simd_comparison/comparing_simd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/simd_comparison/comparing_simd.pdf -------------------------------------------------------------------------------- /tests/weights/r_edu_weights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/weights/r_edu_weights.csv -------------------------------------------------------------------------------- /tests/weights/weights_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDataLabScotland/openSIMD/HEAD/tests/weights/weights_test.R --------------------------------------------------------------------------------