-
Notifications
You must be signed in to change notification settings - Fork 1
/
_MASTER.do
58 lines (34 loc) · 1.25 KB
/
_MASTER.do
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
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PROJECT: CPI - CHDN Nutrition Security Report
PURPOSE: MASTER Dofile to run all dofile involve in this project
AUTHOR: Nicholus
CREATED: 02 Dec 2019
MODIFIED:
THINGS TO DO:
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
// Settings for stata
pause on
clear all
clear mata
set more off
set scrollbufsize 100000
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
// ***SET ROOT DIRECTORY HERE AND ONLY HERE***
do "_dir_setting.do"
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
** STEP 1: Import and Combined Dataset
do "$do/00_data_import_and_combined.do"
** STEP 2: Create Child Level Dataset
do "$do/01_combine_dataset_childlevel.do"
** STEP 3: Child Health data Cleaning
do "$do/02_child_datacleaning.do"
** STEP 4: Child Anthro data Cleaning
do "$do/03_child_anthro_datacleaning.do"
** STEP 5: Create Mother Level Dataset
do "$do/04_combine_dataset_momlevel.do"
** STEP 6: Mother Health Data Cleaning
do "$do/05_mom_health_datacleaning.do"
** STEP 7: Mother Anthro Data Cleaning
do "$do/06_mom_anthro_datacleaning.do"
** STEP 8: Data Analysis
do "$do/07_analysis.do"