-
Notifications
You must be signed in to change notification settings - Fork 17
/
edahist.ado
executable file
·517 lines (348 loc) · 16.1 KB
/
edahist.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
********************************************************************************
* Description of the Program - *
* EDA subroutine used to create pie charts *
* *
* Program Output - *
* Creates pie chart GPH and PDF as well as entries in the LaTeX document *
* *
* Lines - *
* 515 *
* *
********************************************************************************
*! edahist
*! v 0.0.2
*! 17jul2018
// Drop program from memory if already loaded
cap prog drop edahist
// Define program
prog def edahist
// Version used to interpret code
version 14
// Syntax structure for edabar subroutine
syntax varlist(min=1) [if] [in], root(string asis) ///
[ HISTOGramopts(string asis) ///
KDENSity ///
KDENSOpts(string asis) ///
FIVENUMsum ///
FNSOpts(string asis) ///
scheme(passthru) ///
keepgph byvars(varlist) byseq]
// Mark only the observations to use
marksample touse, strok novarlist
// No byvars passed to command
if `"`byvars'"' == "" {
// Add subheading to the LaTeX file
file write doc "\subsubsection{Histograms}" _n
// Graphs for individual continuous variables
foreach v of var `varlist' {
// Get some basic info about the variable
qui: su `v' if `touse', de
// Store sample size
loc n = r(N)
// Observed minimum value of variable
loc vmin = r(min)
// Observed 25th percentile of variable
loc vpct25 = r(p25)
// Observed 50th percentile of variable
loc vmedian = r(p50)
// Observed 75th percentile of variable
loc vpct75 = r(p75)
// Observed maximum value of variable
loc vmax = r(max)
// Observed mean of variable
loc mu = r(mean)
// Observed standard deviation of variable
loc sigma = r(sd)
// Check for 5 num summary option
if "`fivenumsum'" != "" {
// Check for fivenum opts
if `"`fnsopts'"' != "" {
// Loop over "word" segments
forv fnsnum = 1/`: word count `fnsopts'' {
// Create individual macros for the options
loc fns`fnsnum' , `: word `fnsnum' of `fnsopts''
} // End Loop over the word segments in the option
} // End IF Block for five number summary options
// Syntax to add vertical line for minimum value
loc xlinemin xline(`vmin' `fns1')
// Syntax to add vertical line for 25th %ile value
loc xlinep25 xline(`vpct25' `fns2')
// Syntax to add vertical line for 50th %ile value
loc xlinemed xline(`vmedian' `fns3')
// Syntax to add vertical line for 75th %ile value
loc xlinep75 xline(`vpct75' `fns4')
// Syntax to add vertical line for maximum value
loc xlinemax xline(`vmax' `fns5')
// Builds caption text
loc cap1 "Vertical lines show locations of Tukey's Five Number Summary "
// Text to display min/25th %ile values
loc cap2a "Min = `: di %5.2f `vmin'' 25th %ile = `: di %5.2f `vpct25'' "
// Text to display median values
loc cap2b "Median = `: di %5.2f `vmedian'' "
// Text to display 75th/Maximum %ile values
loc cap2c "75th %ile = `: di %5.2f `vpct75'' Max = `: di %5.2f `vmax''"
// Build second line of caption string
loc cap2 "`cap2a'`cap2b'`cap2c'"
// Build last line of caption string
loc cap3 "{&mu} = `: di %5.2f `mu'' {&sigma} = `: di %5.2f `sigma''"
// Local macro used to add caption to graph
loc caption caption("`cap1'" "`cap2'" "`cap3'", size(vsmall) span)
} // End IF Block for Tukey's Five Number Summary
// If no five number summary is requested
else {
// Create text with mu = formatted mean of the variable
loc cap1 "{&mu} = `: di %5.2f `mu'' "
// Create text with sigma = formatted SD of the variable
loc cap2 "{&sigma} = `: di %5.2f `sigma''"
// Local macro used to add caption to graph
loc caption caption("`cap1'`cap2'", size(vsmall) span)
} // End ELSE Block for no five number summary
// Create graph
histogram `v' if `touse', `kdensity' `xlinemin' `xlinep25' ///
`xlinemed' `xlinep75' `xlinemax' `caption' `kdensopts' ///
`histogramopts' ti(`: char `v'[title]') `scheme' ///
note("Created on: `c(current_date)' at: `c(current_time)'")
// Get LaTeX formatted variable name
texclean "`v'", r
// Store the name in vref
loc vref `r(clntex)'
// Get a LaTeX cleaned title string
texclean `"`: var l `v''"'
// Store the string in the local macro vlab
loc vlab `r(clntex)'
// Remove unneeded quotation marks from the label string
loc vlab : subinstr loc vlab `"""' "", all
// Export graph to pdf
qui: gr export `"`root'/graphs/histo`v'.pdf"', as(pdf) replace
// Check if user wants to keep the GPH files
if "`keepgph'" != "" {
// Define local macro with syntax to remove file
qui: gr save `"`root'/graphs/histo`v'.gph"', replace
} // End IF Block to remove .gph files
// Add the graph to the LaTeX file
file write doc "\begin{figure}[h!]" _n
file write doc `"\caption{Histogram of `vlab' \label{fig:histo`vref'}}"' _n
file write doc `"\includegraphics[width=\textwidth]{histo`v'.pdf}"' _n
file write doc "\end{figure} \newpage\clearpage" _n
} // End loop over continuous variables
} // End IF Block for no by vars
// sequential by graphs
else if `"`byvars'"' != "" & "`byseq'" != "" {
// Loop over the bygroup variables
foreach b of var `byvars' {
// Get name of the by variable
texclean `"`b'"', r
// Store by variable name in bref
loc bref `r(clntex)'
// Clean variable label for facets
texclean `: var l `b''
// Subsection ti
loc subsectionti `r(clntex)'
// Add subsubsection
file write doc "\subsubsection{`subsectionti' Lattice Histograms}" _n
// Graphs for individual continuous variables
foreach v of var `varlist' {
// Get some basic info about the variable
qui: su `v' if `touse', de
// Store sample size
loc n = r(N)
// Observed minimum value of variable
loc vmin = r(min)
// Observed 25th percentile of variable
loc vpct25 = r(p25)
// Observed 50th percentile of variable
loc vmedian = r(p50)
// Observed 75th percentile of variable
loc vpct75 = r(p75)
// Observed maximum value of variable
loc vmax = r(max)
// Observed mean of variable
loc mu = r(mean)
// Observed standard deviation of variable
loc sigma = r(sd)
// Check for 5 num summary option
if "`fivenumsum'" != "" {
// Check for fivenum opts
if `"`fnsopts'"' != "" {
// Loop over "word" segments
forv fnsnum = 1/`: word count `fnsopts'' {
// Create individual macros for the options
loc fns`fnsnum' , `: word `fnsnum' of `fnsopts''
} // End Loop over the word segments in the option
} // End IF Block for five number summary options
// Syntax to add vertical line for minimum value
loc xlinemin xline(`vmin' `fns1')
// Syntax to add vertical line for 25th %ile value
loc xlinep25 xline(`vpct25' `fns2')
// Syntax to add vertical line for 50th %ile value
loc xlinemed xline(`vmedian' `fns3')
// Syntax to add vertical line for 75th %ile value
loc xlinep75 xline(`vpct75' `fns4')
// Syntax to add vertical line for maximum value
loc xlinemax xline(`vmax' `fns5')
// Builds caption text
loc cap1 "Vertical lines show locations of Tukey's Five Number Summary "
// Text to display min/25th %ile values
loc cap2a "Min = `: di %5.2f `vmin'' 25th %ile = `: di %5.2f `vpct25'' "
// Text to display median values
loc cap2b "Median = `: di %5.2f `vmedian'' "
// Text to display 75th/Maximum %ile values
loc cap2c "75th %ile = `: di %5.2f `vpct75'' Max = `: di %5.2f `vmax''"
// Build second line of caption string
loc cap2 "`cap2a'`cap2b'`cap2c'"
// Build last line of caption string
loc cap3 "{&mu} = `: di %5.2f `mu'' {&sigma} = `: di %5.2f `sigma''"
// Local macro used to add caption to graph
loc caption caption("`cap1'" "`cap2'" "`cap3'", size(vsmall) span)
} // End IF Block for Tukey's Five Number Summary
// If no five number summary is requested
else {
// Create text with mu = formatted mean of the variable
loc cap1 "{&mu} = `: di %5.2f `mu'' "
// Create text with sigma = formatted SD of the variable
loc cap2 "{&sigma} = `: di %5.2f `sigma''"
// Local macro used to add caption to graph
loc caption caption("`cap1'`cap2'", size(vsmall) span)
} // End ELSE Block for no five number summary
// Create graph
cap histogram `v' if `touse', `kdensity' `xlinemin' ///
`xlinep25' `xlinemed' `xlinep75' `xlinemax' `caption' ///
`kdensopts' `scheme' `histogramopts' by(`bref', ///
ti(`: char `v'[title]') subti(`"`subsectionti'"') ///
note("Created on: `c(current_date)' at: `c(current_time)'"))
// Check return code for success
if _rc == 0 {
// Get LaTeX formatted variable name
texclean "`v'", r
// Store the name in vref
loc vref `r(clntex)'
// Get a LaTeX cleaned title string
texclean `"`: var l `v''"'
// Store the string in the local macro vlab
loc vlab `r(clntex)'
// Remove unneeded quotation marks from the label string
loc vlab : subinstr loc vlab `"""' "", all
// Export graph to pdf
qui: gr export `"`root'/graphs/histo`v'By`bref'.pdf"', as(pdf) replace
// Check if user wants to keep the GPH files
if "`keepgph'" != "" {
// Define local macro with syntax to remove file
qui: gr save `"`root'/graphs/histo`v'By`bref'.gph"', replace
} // End IF Block to remove .gph files
// Add the graph to the LaTeX file
file write doc "\begin{figure}[h!]" _n
file write doc `"\caption{Histogram of `vlab' by `subsectionti' \label{fig:histo`vref'By`bref'}}"' _n
file write doc `"\includegraphics[width=\textwidth]{histo`v'By`bref'.pdf}"' _n
file write doc "\end{figure} \newpage\clearpage" _n
} // End loop over continuous variables
} // End IF Block for return code check
} // End Loop over by graph variables
} // End ELSEIF Block for sequential by graphs
// Lattice graphs
else if `"`byvars'"' != "" & "`byseq'" == "" {
// Get name of the by variable
texclean `"`byvars'"', r
// Store by variable name in bref
loc bref `r(clntex)'
// Store by var reference
loc bvars `: subinstr loc bref `" "' `", "', all'
// Add subsubsection
file write doc `"\subsubsection{Lattice Histograms by `bvars'}"' _n
// Graphs for individual continuous variables
foreach v of var `varlist' {
// Get some basic info about the variable
qui: su `v' if `touse', de
// Store sample size
loc n = r(N)
// Observed minimum value of variable
loc vmin = r(min)
// Observed 25th percentile of variable
loc vpct25 = r(p25)
// Observed 50th percentile of variable
loc vmedian = r(p50)
// Observed 75th percentile of variable
loc vpct75 = r(p75)
// Observed maximum value of variable
loc vmax = r(max)
// Observed mean of variable
loc mu = r(mean)
// Observed standard deviation of variable
loc sigma = r(sd)
// Check for 5 num summary option
if "`fivenumsum'" != "" {
// Check for fivenum opts
if `"`fnsopts'"' != "" {
// Loop over "word" segments
forv fnsnum = 1/`: word count `fnsopts'' {
// Create individual macros for the options
loc fns`fnsnum' , `: word `fnsnum' of `fnsopts''
} // End Loop over the word segments in the option
} // End IF Block for five number summary options
// Syntax to add vertical line for minimum value
loc xlinemin xline(`vmin' `fns1')
// Syntax to add vertical line for 25th %ile value
loc xlinep25 xline(`vpct25' `fns2')
// Syntax to add vertical line for 50th %ile value
loc xlinemed xline(`vmedian' `fns3')
// Syntax to add vertical line for 75th %ile value
loc xlinep75 xline(`vpct75' `fns4')
// Syntax to add vertical line for maximum value
loc xlinemax xline(`vmax' `fns5')
// Builds caption text
loc cap1 "Vertical lines show locations of Tukey's Five Number Summary "
// Text to display min/25th %ile values
loc cap2a "Min = `: di %5.2f `vmin'' 25th %ile = `: di %5.2f `vpct25'' "
// Text to display median values
loc cap2b "Median = `: di %5.2f `vmedian'' "
// Text to display 75th/Maximum %ile values
loc cap2c "75th %ile = `: di %5.2f `vpct75'' Max = `: di %5.2f `vmax''"
// Build second line of caption string
loc cap2 "`cap2a'`cap2b'`cap2c'"
// Build last line of caption string
loc cap3 "{&mu} = `: di %5.2f `mu'' {&sigma} = `: di %5.2f `sigma''"
// Local macro used to add caption to graph
loc caption caption("`cap1'" "`cap2'" "`cap3'", size(vsmall) span)
} // End IF Block for Tukey's Five Number Summary
// If no five number summary is requested
else {
// Create text with mu = formatted mean of the variable
loc cap1 "{&mu} = `: di %5.2f `mu'' "
// Create text with sigma = formatted SD of the variable
loc cap2 "{&sigma} = `: di %5.2f `sigma''"
// Local macro used to add caption to graph
loc caption caption("`cap1'`cap2'", size(vsmall) span)
} // End ELSE Block for no five number summary
// Create graph
cap histogram `v' if `touse', `kdensity' `xlinemin' `xlinep25' ///
`xlinemed' `xlinep75' `xlinemax' `caption' `kdensopts' `scheme' ///
`histogramopts' by(`bref', ti(`: char `v'[title]') ///
subti(`"By `bvars'"') note("Created on: `c(current_date)' at: `c(current_time)'"))
// Check return code for success
if _rc == 0 {
// Get LaTeX formatted variable name
texclean "`v'", r
// Store the name in vref
loc vref `r(clntex)'
// Get a LaTeX cleaned title string
texclean `"`: var l `v''"'
// Store the string in the local macro vlab
loc vlab `r(clntex)'
// Remove unneeded quotation marks from the label string
loc vlab : subinstr loc vlab `"""' "", all
// Export graph to pdf
qui: gr export `"`root'/graphs/histo`v'ByGraphs.pdf"', as(pdf) replace
// Check if user wants to keep the GPH files
if "`keepgph'" != "" {
// Define local macro with syntax to remove file
qui: gr save `"`root'/graphs/histo`v'ByGraphs.gph"', replace
} // End IF Block to remove .gph files
// Add the graph to the LaTeX file
file write doc "\begin{figure}[h!]" _n
file write doc `"\caption{Histogram of `vlab' by `bvars' \label{fig:histo`vref'ByGraphs}}"' _n
file write doc `"\includegraphics[width=\textwidth]{histo`v'ByGraphs.pdf}"' _n
file write doc "\end{figure} \newpage\clearpage" _n
} // End loop over continuous variables
} // End IF Block for return code check
} // End ELSE IF Block for Lattice style graphs
// End of Program definition
end