Dear Statalisters,
I saw another programmer's stata do file that has :
My first question is about the line
My guess is it defines this do file and name it Reg01, what is the purpose of defining this? is it for future use -such as calling Reg01 in another do file?
My next question is about the line
is this used in conjunction with
Best,
Rochelle
I saw another programmer's stata do file that has :
Code:
set more 1 capture log close capture program drop _all clear program define Reg01
Code:
program define Reg01
My guess is it defines this do file and name it Reg01, what is the purpose of defining this? is it for future use -such as calling Reg01 in another do file?
My next question is about the line
Code:
capture program drop _all
Code:
program define Reg01
Best,
Rochelle