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_MG.sas
62 lines (46 loc) · 2.54 KB
/
STAT697-01_s19-team-3_data_analysis_by_MG.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: Which country has the highest inequaality-adjusted education index?
Rationale: This should help identify the which country has the lowest education
index and make appropriate action
Note: This compares the column "Country" to
the column of "Inequality-adjusted life expectancy Index from 2018
Statistical_Annex_Table_3.
Limitations: The value in this dataset need to be numeric to perform mean and
median calculation.
;
*******************************************************************************;
* Research Question Analysis Starting Point;
*******************************************************************************;
*
Question: What is the correleation between year of school and income per capita?
Rationale: This should help demonstrate whehter school can be a important factor
in national income value.
Note: This compares the column "Expected years of
schooling" to the column "Estimated gross national income per capita" from
2018 Statistical_Annex_Table_4
Limitations: The value in this dataset need to be numeric to perform mean and
median calculation
;
*******************************************************************************;
* Research Question Analysis Starting Point;
*******************************************************************************;
*
Question:Which country is experiencing the most severe multidimensional poverty?
Rationale: This should help Non-profit organizaion to appropriate allocate
resources to the needest country.
Note: This compares the column "Country" from
sat15 to the column "Population in severe multidimensional poverty from 2018
Statistical_Annex_Table_6.
Limitations: missing value may need to removed to perform general linear model
;