Grad Fellow Notes: STATA’s Command -coefplot-
The coefplot command allows you to plot results from estimation commands. It is a user package, so you will have to find and install it by inputting into the Stata command line:
findit coefplot
The coefplot command allows you to plot results from estimation commands. It is a user package, so you will have to find and install it by inputting into the Stata command line:
findit coefplot
While using hashtags is simpler than generating the interaction term as a new variable, there is a necessary rule to remember: use the variable prefixes. In Stata, -i.[variable]- indicates that the variable is categorical, and -c.[variable]- indicates a continuous variable. Because the hashtag code assumes the variables in the interaction term are categorical, it is necessary to define numerical variables as numerical with the -c.- prefix.
Wage = β0 + β1Education + β2Minority + β3Education*Minority + ε
We work with clients who are running poverty interventions in the field. These are not experiments – where the program is designed around an experiment – these are impact evaluations that have to be designed around a development program that has already been designed or is in progress. As such, often times the sample size […]
Introduction It is often the case in Impact Evaluation that we have a need to analyze binary, qualitative variables such as savings behavior (saves vs. does not save), voting behavior (votes vs. does not vote), or gender (male vs. female). In general, we are interested in whether a condition exists or does not exist, rather […]