Difference between revisions of "Data Analysis"

Jump to: navigation, search
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Data analysis refers to the process of exploring and describing trends and results from data. This page outlines guidelines of implementing analysis, organizing analysis files and outputting analytical results.  
Data analysis is the process of exploring and describing trends and results from data. Data analysis typically occurs in two stages: exploratory analysis and final analysis. This page provides guidance on how to organize analysis files and output results in an orderly and [[Reproducible Research | reproducible]] manner.  


==Read First==
==Read First==
* Any data used for analysis must be [[Data Cleaning | clean]].  
* Always [[Data Cleaning | clean]] data before conducting data analysis.
* Place exploratory analysis files in a separate, well-organized "exploratory" folder.
* Place exploratory analysis files in a separate, well-organized "exploratory" folder; place the final analysis file in the "final" analysis folder.
* When the final analysis workflow is agreed upon for a given publication or other output, a final analysis file should be collated for that output only in the "final" analysis folder.
* Create tables and figures via replicable do-files in such a way that the result files are ordered, named, placed, and formatted appropriately.
* When outputting analytical results, all tables and figures should be created via replicable do-files in such a way that the result files are ordered, named, placed, and formatted appropriately.


Data analysis typically occurs in two stages: exploratory analysis and final analysis. Exploratory analysis seeks to summarize trends in the data so that the research team can begin to outline the reports, publications, presentations, and summaries. Later, in final analysis, the methods are finalized and the code is re-written in manner appropriate for public release with the results.
==Exploratory vs. Final Analysis==
 
Exploratory analysis focuses on producing easily understood summaries of the trends in the data so that researchers can begin to outline reports, publications, presentations, and summaries. Final analysis is the fine-tuned culmination of exploratory analysis and requires re-written code appropriate for public release with the results.
 
== Organizing Analysis Files ==
 
Place exploratory analysis programs in an "exploratory" folder, separated according to topic. When folder syncing over [https://www.dropbox.com Dropbox] or [https://www.github.com Github], separating these files by function (rather than combining them into a single "analysis" file) allows multiple researchers to work simultaneously and modularly.
 
When the final analysis workflow is agreed upon for a given publication or other output, a final analysis file should be collated for that output only in the "final" analysis folder. This allows selective reuse of the code from the exploratory analyses, in preparation for the final release of the code if required. This allows any collaborator, referee, or replicator to access only the code used to prepare the final outputs and [[Reproducible Research | reproduce]] them exactly.


== Implementing Analysis ==
== Implementing Analysis ==


The Stata cheat sheet on [http://geocenter.github.io/StataTraining/pdf/StataCheatSheet_analysis_201615_June-REV.pdf data analysis] is a useful reminder of relevant Stata code. The cheat sheet on [http://geocenter.github.io/StataTraining/pdf/StataCheatSheet_programming15_2016_June_TE-REV.pdf Stata programming] is a good resource for more advanced analytical tasks in Stata. Below follows a list of resources on specific analytical methods. This list is by no means exhaustive.
Below follows a sampling of specific analytical methods.  


*[[Spatial Analysis |Spatial/GIS Analysis]] uses geospatial data to explore relationships mediated by proximity or connectiveness. This can be descriptive (i.e. map illustrations) or informative (i.e. distance to and quality of the nearest road).
*[[Spatial Analysis |Spatial/GIS Analysis]] uses geospatial data to explore relationships mediated by proximity or connectiveness. This can be descriptive (i.e. map illustrations) or informative (i.e. distance to and quality of the nearest road).
Line 21: Line 28:
*[[Data visualization]] is a critical step in effectively communicating your research results.
*[[Data visualization]] is a critical step in effectively communicating your research results.


== Organizing Analysis Files ==
The [[Stata Coding Practices | Stata]] cheat sheet on [http://geocenter.github.io/StataTraining/pdf/StataCheatSheet_analysis_201615_June-REV.pdf data analysis] gives guidelines on relevant Stata code for analysis. The cheat sheet on [http://geocenter.github.io/StataTraining/pdf/StataCheatSheet_programming15_2016_June_TE-REV.pdf Stata programming] is a good resource for more advanced analytical tasks in Stata.
 
Analysis programs that are exploratory in nature should be held in an "exploratory" folder and separated according to topic. Particularly when folder syncing over [https://www.dropbox.com Dropbox] or [https://www.github.com Github] is being used, separating these files by function (rather than combining them into a single "analysis" file) allows multiple researchers to work simultaneously and modularly.
 
When the final analysis workflow is agreed upon for a given publication or other output, a final analysis file should be collated for that output only in the "final" analysis folder. This allows selective reuse of the code from the exploratory analyses, in preparation for the final release of the code if required. This allows any collaborator, referee, or replicator to access only the code used to prepare the final outputs and [[Reproducible Research | reproduce]] them exactly.


== Outputting Analytical Results ==
== Outputting Analytical Results ==


Since the final analysis do-files are intended to be fully replicable, and the code itself is considered a vital, shareable output, all tables and figures should be created in such a way that the files are ordered, [[Naming Conventions | named]], placed, and formatted appropriately. Running the analysis dofile should result in ''only'' necessary files in the "outputs" folder, with names like "figure_1.png", "table_1.xlsx", and so on.
Since the final analysis do-files are intended to be fully replicable, and the code itself is considered a vital, shareable output, all tables and figures should be created in such a way that the files are ordered, [[Naming Conventions | named]], placed, and formatted appropriately. Running the analysis do file should result in ''only'' necessary files in the "outputs" folder, with names like "figure_1.png", "table_1.xlsx", and so on.


For some applications (i.e. creating internal presentations or simple Word reports), file types like PNG and XLSX are sufficiently functional. For larger projects with multiple collaborators, particularly when syncing over a [https://www.github.com GitHub] service, plaintext file types such as EPS, CSV, and TEX will be the preferred formats. Tables and figures should at minimum be produced by this file such that no further mathematical calculations are required. They should furthermore be organized and formatted as nearly to the published versions as possible. Figures are typically easy to do this in by using an appropriate <code>graph export</code> command in Stata or the equivalent. [https://www.latex-project.org LaTeX] is a particularly powerful tool for doing this with tables. DIME provides several guides on both processes. See [[Exporting Analysis]] for more details and more resources.
For some applications (i.e. creating internal presentations or simple Word reports), file types like PNG and XLSX are sufficiently functional. For larger projects with multiple collaborators, particularly when syncing over a [https://www.github.com GitHub] service, plaintext file types such as EPS, CSV, and TEX will be the preferred formats. Tables and figures should at minimum be produced by this file such that no further mathematical calculations are required. They should furthermore be organized and formatted as nearly to the published versions as possible. Figures are typically easy to do this in by using an appropriate <code>graph export</code> command in Stata or the equivalent. [https://www.latex-project.org LaTeX] is a particularly powerful tool for doing this with tables. DIME provides several guides on both processes. See [[Exporting Analysis |exporting analysis results]] for more details and more resources.


== Additional Resources ==
== Additional Resources ==
 
*Angrist and Pischke's [https://www.researchgate.net/publication/51992844_Mostly_Harmless_Econometrics_An_Empiricist's_Companion Mostly Harmless Econometrics: An Empiricist's Companion]


[[Category: Data Analysis ]]
[[Category: Data Analysis ]]

Revision as of 15:14, 16 April 2019

Data analysis is the process of exploring and describing trends and results from data. Data analysis typically occurs in two stages: exploratory analysis and final analysis. This page provides guidance on how to organize analysis files and output results in an orderly and reproducible manner.

Read First

  • Always clean data before conducting data analysis.
  • Place exploratory analysis files in a separate, well-organized "exploratory" folder; place the final analysis file in the "final" analysis folder.
  • Create tables and figures via replicable do-files in such a way that the result files are ordered, named, placed, and formatted appropriately.

Exploratory vs. Final Analysis

Exploratory analysis focuses on producing easily understood summaries of the trends in the data so that researchers can begin to outline reports, publications, presentations, and summaries. Final analysis is the fine-tuned culmination of exploratory analysis and requires re-written code appropriate for public release with the results.

Organizing Analysis Files

Place exploratory analysis programs in an "exploratory" folder, separated according to topic. When folder syncing over Dropbox or Github, separating these files by function (rather than combining them into a single "analysis" file) allows multiple researchers to work simultaneously and modularly.

When the final analysis workflow is agreed upon for a given publication or other output, a final analysis file should be collated for that output only in the "final" analysis folder. This allows selective reuse of the code from the exploratory analyses, in preparation for the final release of the code if required. This allows any collaborator, referee, or replicator to access only the code used to prepare the final outputs and reproduce them exactly.

Implementing Analysis

Below follows a sampling of specific analytical methods.

  • Spatial/GIS Analysis uses geospatial data to explore relationships mediated by proximity or connectiveness. This can be descriptive (i.e. map illustrations) or informative (i.e. distance to and quality of the nearest road).
  • Randomization inference techniques replace the "normal" p-values from regression analyses with values based on the treatment assignment methodology. They are generally recommended for reporting in experiments whose estimates are of randomly assigned treatment controlled by the implementer and researcher.
  • Cost-effectiveness analysis compares the cost and effectiveness per unit of a given program to determine whether the value of an intervention justifies its cost.
  • Regression discontinuity analysis is a quasi-experimental impact evaluation design which attempts to find the causal effects of interventions by assigning a threshold (cutoff point) above and below which the treatment is assigned
  • Propensity score matching is another quasi-experimental impact evaluation technique to estimate the effects of a treatment by matching control group participants to treatment group participants based on propensity score
  • Heterogeneous Effects Analysis uses an ensemble of methods to understand how effects vary across sub-populations
  • Data visualization is a critical step in effectively communicating your research results.

The Stata cheat sheet on data analysis gives guidelines on relevant Stata code for analysis. The cheat sheet on Stata programming is a good resource for more advanced analytical tasks in Stata.

Outputting Analytical Results

Since the final analysis do-files are intended to be fully replicable, and the code itself is considered a vital, shareable output, all tables and figures should be created in such a way that the files are ordered, named, placed, and formatted appropriately. Running the analysis do file should result in only necessary files in the "outputs" folder, with names like "figure_1.png", "table_1.xlsx", and so on.

For some applications (i.e. creating internal presentations or simple Word reports), file types like PNG and XLSX are sufficiently functional. For larger projects with multiple collaborators, particularly when syncing over a GitHub service, plaintext file types such as EPS, CSV, and TEX will be the preferred formats. Tables and figures should at minimum be produced by this file such that no further mathematical calculations are required. They should furthermore be organized and formatted as nearly to the published versions as possible. Figures are typically easy to do this in by using an appropriate graph export command in Stata or the equivalent. LaTeX is a particularly powerful tool for doing this with tables. DIME provides several guides on both processes. See exporting analysis results for more details and more resources.

Additional Resources