Network Software

I have been a contributing member to the statnet project since February 2012. Currently I am an author on the networkDynamic package which is available on CRAN and the networkSpatial package which is available through the NCASD Lab servers.

Requires devtools,

install.packages("devtools")
library(devtools)
install_github("SSDALab/dnr")

Network data

Requires devtools,

install.packages("devtools")

then you can install it directly as follows,

library(devtools)
install_github("zalmquist/networkdata")
  • Butts, Carter T.; Hipp, John R.; Nagle, Nicholas N.; Boessen, Adam; Acton, Ryan M.; Marcum, Christopher S.; Almquist, Zack W.; Smith, Emma J.; and Lickfett, Jay. (2014). The American Social Fabric Study.

CoC Homeless Counts

Requires devtools,

install.packages("devtools")

then you can install it directly as follows,

library(devtools)
install_github("SSDALab/CoCHomeless")
library(CoCHomeless)
help(package=CoCHomeless)

US Census Data and Software

I have several packages for the R statistical language that are currently available on CRAN and many other packages representing 30 years of US Census spatial and demographic data. Nine of these packages are ports of the 1990, 2000, 2010 US Census demographic and geographic data into an R friendly form, and the other three packages consist of helper functions that allow for manipulation and handling of these large data sets. I recommend installing from the development (stable) versions. Discussed below.

I recently gave a talk titled “US Census Spatial and Demographic Data in R” at useR!2010 where I discussed many of the basic syntax and other necessary information for using these packages. The slides may be found [here](http://user2010.org/slides/Almquist.pdf. I have also published a peer-reviewed journal article on these packages through the Journal of Statistical Software, which may be found [here](http://www.jstatsoft.org/v37/i06/. A very nice write up on how to use these packages for measuring residential segregation can be found [here](http://spatialdemography.org/wp-content/uploads/2014/04/V2_Issue1_Sparks.pdf. I recommend getting the latest versions off of R-forge [https://r-forge.r-project.org/R/?group_id=2022 here]. Installation instructions can be found on the webpage.

Installation

install.packages("UScensus2000cdp", repos="http://R-Forge.R-project.org")
install.packages("UScensus2000blkgrp", repos="http://R-Forge.R-project.org")
install.packages("UScensus2000tract", repos="http://R-Forge.R-project.org")
install.packages("UScensus2000", repos="http://R-Forge.R-project.org")

install.packages("UScensus2010cdp", repos="http://R-Forge.R-project.org")
install.packages("UScensus2010county", repos="http://R-Forge.R-project.org")
install.packages("UScensus2010tract", repos="http://R-Forge.R-project.org")
install.packages("UScensus2010blkgrp", repos="http://R-Forge.R-project.org")
install.packages("UScensus2010", repos="http://R-Forge.R-project.org")

To install the block packages do the following (WARNING these are quite big!):

library(UScensus2000)
install.blk()
library(UScensus2010)
install.blk()