Description Usage Format Source References Examples
The dataset contains 350,696 individual observations from the 2010 census in Brazil. This is only a subset of variables and observations of the original census that can be used as an example for the functionality of the ELLsae package. The full documentation can be found here: http://microdata.worldbank.org/index.php/catalog/2078/study-description.
1 |
A data frame with 350696 rows and 11 variables:
household income
inconsistent level two boundaries of Brazil, Municipality 1980 - 2010
year of the census
The age of a person in years
sex (discrete)
number of adults
number of children
indicates the person's religion, including "none"
computer in the household (discrete)
trash disposal (discrete)
Urban-rural status (discrete)
https://international.ipums.org/international/index.shtml
Brazilian Institute of Geography and Statistics (IBGE). Brazil Demographic Census 2010. Rio de Janeiro, Brazil: Brazilian Institute of Geography and Statistics (IBGE), 2012.
1 2 3 4 5 6 7 8 | ##### one possibility to split the data
brazil <- ELLsae::brazil
#'# generate indexes for the rows to keep. order indexes to keep.
helper <- sample(x = 1:nrow(brazil), size = nrow(brazil)/5, replace = FALSE)
helper <- sort(helper)
#'#create survey and census set from the originial data using the indexes
survey <- brazil[helper,]
census <- brazil[-helper,]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.