For my primary visualization, all of the unemployment data I aggregated can be found here through the United States Department of Labor: Bureau of Labor Satistics. In order to allow the user to have the ability to sift through 20 years of data, I began at January 1999 and took the state unemployment data from January of each year. After a bit of aggregation, the simpliest iteration of the csv data looked like so:
state,rate Iowa,2.5 New Hampshire,2.7 North Dakota,3.4 ...
state,id,rate Iowa,19,2.5 New Hampshire,33,2.7 North Dakota,38,3.4 ...
state,id,rate,national Iowa,19,2.5,4.3 New Hampshire,33,2.7,4.3 North Dakota,38,3.4,4.3 ...
state,id,rate,national,population Iowa,19,2.9,4.1,"3,156,145" New Hampshire,33,2.6,4.1,"1,356,458" North Dakota,38,2.6,4.1,"760,077" ...