About this Package

I developed this package in 2015 as a way to give R users easier access to some of the United States Census Bureau's Census 2010 data on Census blocks. Typically the Census block data have to be downloaded one state at a time, in huge files. This package provides the following data on 11 million Census blocks: pop, lat/lon, area, urban. Each field (e.g., pop contains population counts) is stored as a vector in one RData file for the entire USA's 11 million plus blocks. These can be quickly compiled into a single data.frame that has over 11 million rows and one column per field. The fields are FIPS code (fips), population count (pop), latitude (lat), longitude (lon), physical size (area), and urban vs rural code (urban).

Help documentation as pdf

Installation and Related Packages

This and related packages, once each is made available as a public repository on GitHub, until available on cran, can be installed using the devtools package:

if (!require('devtools')) install.packages('devtools')
devtools::install_github("ejanalysis/analyze.stuff")
devtools::install_github("ejanalysis/countyhealthrankings")
devtools::install_github("ejanalysis/UScensus2010blocks")
devtools::install_github("ejanalysis/ACSdownload")
devtools::install_github(c("ejanalysis/proxistat", "ejanalysis/ejanalysis"))
devtools::install_github("ejanalysis/ejscreen")