Does anyone know where to download the ASCII (.sas) files for reading the microdata of the 2010 IBGE Demographic Census?
I know the Anthony Damico just keeps some files on his site (see below how to do the download), but I am looking for the files made available by IBGE itself. Damico does not provide, for example, the file for reading the mortality basis.
# download arquivo SAS de pessoas
download.file( "https://raw.github.com/ajdamico/asdfree/master/Censo%20Demografico/SASinputPes.txt" , "LEPESSOAS.sas" )
ps. In the IBGE / census 2010 site it is possible to download the microdata and documentation, but there is no information about the read files in SAS
UPDATE (02 Oct 2015)
I confirmed @Rcoster's response with two IBGE researchers. IBGE does not make the SAS read files available on the site. I followed the suggestion of @Rcoster and created a script that:
- Download 2010 census data and documentation
- uses the variable dictionary in excel to build the base reading file in
.txt
and convert todata.table
- save bases in
.csv
The script is very fast and is available here . Suggestions are welcome.