-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_GEPD.do
33 lines (28 loc) · 1.49 KB
/
run_GEPD.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
*==============================================================================*
*! GEPD Production (GEPD) - PUBLIC VERSION
*! Project information at: https://www.educationpolicydashboard.org/
*! GEPD Team, World Bank Group [educationdashboard@worldbank.org]
*! MASTER RUN: Executes all tasks sequentially
*==============================================================================*
* Check that project profile was loaded, otherwise stops code
cap assert ${GEPD_profile_is_loaded} == 1
if _rc {
noi disp as error "Please execute the profile initialization do in the root of this project and try again."
exit 601
}
*-------------------------------------------------------------------------------
* Set some parameters for the project
*-------------------------------------------------------------------------------
global country "NGA"
global country_name "Nigeria - Edo State"
global year "2023"
global strata lga urban_rural
* Strata for sampling
*-------------------------------------------------------------------------------
* Run all tasks in this project
*-------------------------------------------------------------------------------
* TASK: calculates GEPD School Indicators by combining multiple data sources
do "${clone}/02_programs/School/01_school_run.do"
* TASK: calculates GEPD Public Officials Indicators by combining multiple data sources
do "${clone}/02_programs/Public_Officials/01_public_officials_run.do"
*-------------------------------------------------------------------------------