-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmp_excer.mpb
43 lines (34 loc) · 947 Bytes
/
mp_excer.mpb
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
<header>
<mkproject> boilerplate
<version> 2.1.0
<label> course exercise
<description>
{pstd}
This a a template for a .do file that a student can use to do an
exercise in a course.
</description>
</header>
<body> -------------------------------------------------------------------------
cd "<basedir>"
capture log close
log using <stub>.txt, replace text
// ---------------------------------------------------------------------------
// course :
// exercise :
// name :
// student number:
// ---------------------------------------------------------------------------
version <stata_version>
clear all
*use [original_data_file.dta]
// exercise 1 ................................................................
/*
Answer
*/
// exercise 2 ................................................................
/*
Answer
*/
log close
exit
</body> ------------------------------------------------------------------------