Difference between revisions of "Stata Coding Practices"

Jump to: navigation, search
Line 1: Line 1:
<onlyinclude> Stata is used in all stages of an impact evaluation: [[Sampling & Power Calculations | sampling]], [[Randomization in Stata | randomizing]], [[Monitoring Data Quality | monitoring]], [[Data Cleaning | cleaning]], and [[Data Analysis | analyzing]]. Good Stata coding practices, packages, and commands are not only a critical component of high quality, [[Reproducible Research | reproducible research]], but they are also key in saving the research team time, energy, and sanity. This page outlines a number of packages and commands developed by DIME and externally for use in impact evaluations. For additional resources on Stata coding, see [[Stata Coding Practices#Additional Resources | Additional Resources]]. </onlyinclude>
<onlyinclude>Stata is used in all stages of an impact evaluation: [[Sampling & Power Calculations | sampling]], [[Randomization in Stata | randomizing]], [[Monitoring Data Quality | monitoring]], [[Data Cleaning | cleaning]], and [[Data Analysis | analyzing]]. Good Stata coding practices, packages, and commands are not only a critical component of high quality, [[Reproducible Research | reproducible research]], but they are also key in saving the research team time, energy, and sanity. This page outlines a number of packages and commands developed by DIME and externally for use in impact evaluations. For additional resources on Stata coding, see [[Stata Coding Practices#Additional Resources | Additional Resources]].</onlyinclude>


==Read First==
==Read First==

Revision as of 18:08, 23 July 2019

Stata is used in all stages of an impact evaluation: sampling, randomizing, monitoring, cleaning, and analyzing. Good Stata coding practices, packages, and commands are not only a critical component of high quality, reproducible research, but they are also key in saving the research team time, energy, and sanity. This page outlines a number of packages and commands developed by DIME and externally for use in impact evaluations. For additional resources on Stata coding, see Additional Resources.

Read First

  • iefieldkit is a Stata package for primary data collection. It currently supports three major components of that workflow: survey design; survey completion; and data cleaning and survey harmonization.
  • ietoolkit is a Stata package for data management and analysis in impact evaluations.
  • You can install both packages using ssc install.
  • DIME Analytics, alongside institutions like Innovations for Poverty Action, offers a wide range of resources on code, packages and commands -- from tutorials to code samples to installable packages and commands. See Additional Resources for more.

Packages for Impact Evaluations

iefieldkit

iefieldkit is a Stata package developed by DIME for primary data collection. The package currently supports three major components of that workflow: survey design; survey completion; and data cleaning and survey harmonization. iefieldkit performs the following three tasks:

  • Before data collection , ietestform complements the ODK syntax test on SurveyCTO server. It runs tests to inform researchers how to use ODK programming language features to ensure high data quality. This command is especially useful if the data that will be imported to Stata has other restrictions in addition to ODK syntax.
  • During data collection, ieduplicates and iecompdup (both previously released as a part of the package ietoolkit but now moved to this package) provide a workflow for detecting and resolving duplicate entries in the dataset. These commands ensure that the final survey dataset is a correct record of the survey sample that the researcher can then merge into the master sampling database.
  • After data collection, iecodebook provides a workflow for rapidly cleaning, harmonizing, and documenting datasets. iecodebook uses input specified in an Excel sheet, which provides a much more well-structured and easy to follow (especially for non-technical users) overview than the same operations written directly to a dofile.

To install the package, type ssc install iefieldkit in your Stata command window. Note that some features of the package might require meta data specific to SurveyCTO, but feel free to try these commands on any use case. For more details, see the iefieldkit GitHub page.

ietoolkit

ietoolkit is a Stata package developed by DIME for data management and analysis in impact evaluations. The list of commands will be extended continuously, and suggestions for new commands are always appreciated.

Its commands for data management currently include iefolder, which sets up project folders and creates master do-files that link to all sub-folders; iegitaddmd, which adds a placeholder file to empty folders so that folder structures with empty folders can be shared on GitHub; and ieboilstart, which standardizes the boilerplate code at the top of all do-files. Its commands for data analysis currently include iematch, an algorithm for matching observations in one group to "the most similar" observations in another group; iebaltab, which runs balance test regressions and outputs the result in well formatted balance tables; iedropone, which drops observations and controls that the correct number was dropped; ieboilsave, which performs checks before saving a data set; ieddtab, which runs difference in differences regressions and outputs the result in well formatted tables; and iegraph, which produces graphs of estimation results in common impact evaluation regression models

To install the ietoolkit, type ssc install ietoolkit in your Stata command window. For more details, see the ietoolkit GitHub page.

Additional Resources

Programs and Commands

General Coding Resources