Hello all,
I am new to the Stata Community and working on the 2016 Canadian census of population micro dataset to create a social deprivation index using census tract level data on socio-economic characteristics of Canadians. While preparing the required variables for PCA in Stata, I found that the dataset came up with a person weight variable (COMPW2) and STATCAN has recommended using COMPW2 to represent the population in any further statistical analysis. COMPW2 weight is the same for all household members but varies across households, ranges from 1 to 17, with an average value of approximately 4. I have a focus on a particular CMA and the analysis will be done at the census tract level.
Would you please comment whether I have correct Stata commands while generating new variables using the COMPW2 weight variable.
Variable: percentage/proportions of females in each census tract
Stata Code:
*total number of females by census tract
egen nofem=total COMPW2 if sex==1, by(censustract)
alternatively, bysort censustract: egen nofem=total COMPW2 if sex==1
*total population by census tract
egen nopop=total COMPW2, by(censustract)
*proportion of females by census tract
egen propfem=nofem/nopop
Your help will be appreciated. Thanks, Liton
Related Posts with Stata code wighted census data for PCA
Population-weighted estimate with panel dataHi all, I have a problem in estimation with panel data. I would like to study the correlation betwe…
How to fill in missing values by group when there is one nonmissing value per groupHi, I have a variable that has one nonmissing numeric value per group, and all the other values are …
exact, loopable area shading of line graph between pairs of observationsDear list members, I have a question on the placement of shaded areas in graphs. I had a look at SJ…
time trends and individual effectsDear all, When I control i.company#c.trend, can I control individual effects? Code: webuse grunfel…
Change Histogram Axis labels for 2 valuesHi ! I want to create an histogram in Stata. I can do it but I also want to change the value "0" a…
Subscribe to:
Post Comments (Atom)
0 Response to Stata code wighted census data for PCA
Post a Comment