Difference between revisions of "Aggregation"

Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
== Read First ==
== Read First ==
* Make sure to use specialized commands for aggregation like Stata’s <code>egen rowtotal()</code> to avoid errors.
* Make sure to use specialized commands for aggregation like Stata’s <code>egen rowtotal()</code> to avoid errors.
* After aggregating, check if any missing values were created and make sure you can explain why they were created.
* After aggregating, check if any missing values were created. If they were, make sure you can explain why.


==Common Cases of Aggregation ==
==Common Cases of Aggregation ==
Line 35: Line 35:


*More [https://stats.idre.ucla.edu/stata/modules/missing-values/ details] on how Stata handles missing values  
*More [https://stats.idre.ucla.edu/stata/modules/missing-values/ details] on how Stata handles missing values  
*Stata’s [https://www.stata.com/manuals13/degen.pdf <code>egen</code> manual]
*Stata’s [https://www.stata.com/manuals13/degen.pdf manual] on <code>egen</code>  
*FAO’s [http://www.fao.org/fileadmin/user_upload/riga/pdf/ai197e00.pdf guide] on constructing income aggregates
*FAO’s [http://www.fao.org/fileadmin/user_upload/riga/pdf/ai197e00.pdf guide] on constructing income aggregates
*UCLA’s guide on [https://stats.idre.ucla.edu/stata/modules/collapsing-data-across-observations/ collapsing data] across observations to create summary statistics
*UCLA’s [https://stats.idre.ucla.edu/stata/modules/collapsing-data-across-observations/ guide] on collapsing data across observations to create summary statistics


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

Latest revision as of 18:34, 29 April 2019

Aggregation is the compilation of many values to create one aggregate value. It takes place during data construction, which occurs between data cleaning and data analysis. This page provides common cases of aggregation and outlines best practices.

Read First

  • Make sure to use specialized commands for aggregation like Stata’s egen rowtotal() to avoid errors.
  • After aggregating, check if any missing values were created. If they were, make sure you can explain why.

Common Cases of Aggregation

Categories

Questionnaires often split variables into categories in order to help respondents recall information more exhaustively and according to the researcher’s definitions. For example, even if a researcher is only interested in total income, he/she may design the questionnaire to ask about categories of income (i.e. agricultural wages, non-agricultural wages, self-employment, crop production, livestock production, transfers, and other income). He/she we will then aggregate these category values later.

To properly aggregate categories in survey data, make sure to clean the categories for survey codes and to use commands that properly handle missing data like egen rowtotal().

Repeat Groups

Questionnaires often ask the same question over a number of repeated instances. For example, a questionnaire may repeat through a list of crops that a household cultivates and ask for the annual income earned on each. To calculate total income earned on crops, the researcher would then aggregate these group values.

Aggregating repeat groups introduces issues similar to those described above, but missing values are even more common. Accordingly, be sure to clean the categories for survey codes and use commands that properly handle missing data like egen rowtotal().

Best Practices

Use Specialized Commands

Do not manually aggregate variables. Code like gen var_aggregate = var1 + var2 + var3 would lead to many var_aggregate values incorrectly reported as missing, since most programming languages would consider var_aggregate as missing if any one of var1, var2, or var3 were missing. Instead, use the egen Stata command, which treats missing values as 0. For example: egen total_income = rowtotal(income1, income2, income3). In R, use the aggregate or rowSums commands.

Standardize Variables

If your variables have units, make sure that your variables are standardized to the same unit before aggregating.

Avoid Double Corrections

If you have applied adjustments, transformations, or normalizations to the disaggregated variables, it is not typically a good idea to apply the same adjustments to the aggregated value.

Back to Parent

This article is part of the topic Data Analysis

Additional Resources

  • More details on how Stata handles missing values
  • Stata’s manual on egen
  • FAO’s guide on constructing income aggregates
  • UCLA’s guide on collapsing data across observations to create summary statistics