-
Notifications
You must be signed in to change notification settings - Fork 6
/
pip_auxframes.ado
100 lines (81 loc) · 2.6 KB
/
pip_auxframes.ado
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*==================================================
project: Create auxiliary PIP frames
Author: R.Andres Castaneda
----------------------------------------------------
Creation Date: 18 May 2023 - 16:01:20
==================================================*/
/*==================================================
0: Program set up
==================================================*/
program define pip_auxframes, rclass
//========================================================
// create tables
//========================================================
//------------ setup
if ("${pip_version}" == "") {
noi disp "{err}No version selected."
error
}
tokenize "${pip_version}", parse("_")
local _version = "_`1'_`3'_`9'"
//------------ name of tables and frames
local tables "countries regions framework"
local frames "cts regions fw"
//------------ Iterations
gettoken table tables: tables
gettoken frame frames: frames
while ("`table'" != "") {
pip_timer aux_frames.`table', on
local pframe "_pip_`frame'`_version'"
pip_auxframes_create, table(`table') frame(`pframe')
//========================================================
// Format each table
//========================================================
if (`r(fexisted)' == 0) { // format if it did not existed
//------------countries
if ("`frame'" == "cts") frame `pframe': sort country_code
//------------regions
if ("`frame'" == "regions") {
frame `pframe' {
drop grouping_type
sort region_code
}
}
//------------framework
if ("`frame'" == "fw") {
frame `pframe' {
rename welfare_type wt
label define welfare_type 1 "consumption" 2 "income"
encode wt, gen(welfare_type)
rename wb_region_code region_code
}
}
} // end of previous existence condition
pip_timer aux_frames.`table', off
//------------ go to next iteration
gettoken table tables: tables
gettoken frame frames: frames
}
end
//========================================================
// Aux programs
//========================================================
//------------ Create auxiliary frame
program define pip_auxframes_create, rclass
syntax, table(string) frame(string)
pip_utils frameexists, frame("`frame'")
if (`r(fexists)' == 0) {
frame create `frame'
cap frame `frame': pip_tables , table(`table') clear
if (_rc) {
frame drop `frame'
error
}
return local fexisted = 0
}
else return local fexisted = 1
end
exit
/* End of do-file */
><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><
scalar scode = `""'