forked from stat697-s19/team-3_project_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
STAT697-01_s19-team-3_data_analysis_by_MP.sas
63 lines (48 loc) · 2.83 KB
/
STAT697-01_s19-team-3_data_analysis_by_MP.sas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
*******************************************************************************;
**************** 80-character banner for column width reference ***************;
* (set window width to banner width to calibrate line length to 80 characters *;
*******************************************************************************;
* set relative file import path to current directory (using standard SAS trick);
X "cd ""%substr(%sysget(SAS_EXECFILEPATH),1,%eval(%length(%sysget(SAS_EXECFILEPATH))-%length(%sysget(SAS_EXECFILENAME))))""";
* load external file that will generate final analytic file;
%include '.\STAT697-01_s19-team-3_data_preparation.sas';
*******************************************************************************;
* Research Question Analysis Starting Point;
*******************************************************************************;
*
Question: Is there evidence that countries with a greater % of "Inequality of
Education" also suffer from greater poverty as measured by the "Multidimensional
Poverty Index"?
Rationale: This would indicate if there is an assocation between eduaction
inequality and poverty, and if the former can be an indicator of poverty in a
country.
Note: This compares the column "Inequality of Education" from 2018 Statistical
Annex Table 3 to the column "Multidimensional Poverty Index" from 2018
Statistical Annex Table 6.
;
*******************************************************************************;
* Research Question Analysis Starting Point;
*******************************************************************************;
*
Question: Is there a strong association between "Mean years of schooling" and
the "Multidimensional Poverty Index" by gender?
Rationale: This would show is their is an association between average years of
schooling and poverty levels per country, and would also indicate if their is a
significant difference in the strength of assocation by gender.
Note: This compares the columns "Female" and "Male" under "Mean years of schooling"
from 2018 Statistical Annex Table 4 each to the column "Multudimensional Poverty
Index" from 2018 Statistical Annex Table 6.
;
*******************************************************************************;
* Research Question Analysis Starting Point;
*******************************************************************************;
*
Question: Can % of "Population living below the income poverty line", specifically,
the "national poverty line" for 2006-2017 be used to predict the country's "Human
Development Index (HDI)"?
Rationale: This can help to see how poverty levels are associated with a country's
Human Development Index value, which assesses a country's development.
Note: This compares the column "National poverty line" from 2018 Statistical
Annex Table 6 to the column "Human Devlopment Index (HDI)" from 2018 Statistical
Annex Table 3.
;