A brief summary presentation of my mobile research at Rock the Vote, as presented to the Analyst Group in Nov. 2008.
The following is my professional report for my master's degree in public affairs, which I wrote somewhat hastily in the spring of 2007. Please excuse the many typos and generally rushed writing. My first reader was Professor (& current Austin city councilman) Bill Spelman and my second reader was former state representative Sherri Greenberg.
Congressional redistricting occurs across the states after every decennial census, and is typically a fiercely partisan process marked by partisan strategizing, cries of gerrymandering, and endless court battles. Single-member districts are drawn to be contiguous, equipopulous, and compliant with the Voting Rights Act; states also attempt to make compact districts, align them with political subdivisions, and maintain communities of interest. A few states seek to create competitive districts that reduce the incumbent’s advantage. Redistricting law has changed markedly in the past century, beginning with the enforcement of equal population in the 1960s; since then emphasis has shifted to racial and partisan gerrymandering. One innovative technique to reduce gerrymandering is the independent redistricting commission; these commissions are reviewed for the six states who use them for congressional districts. Based on this comparative analysis, recent attempts in Texas to reform redistricting do not appear strong enough. Public input into the redistricting process should be strengthened and the current proposal to give undue influence to rural interests should be modified. But given the difficulty of enacting redistricting reform, more conservative alternatives should also be considered: a constitutional amendment prohibiting mid-decade redistricting, federal legislation on electoral procedures, and multi-member districts with proportional representation.
During my flight from DC to Texas today I finally got around to creating my first draft of a logic map (or model) for new media in a political advocacy context - a simpler abridged version has been sketched out on my office whiteboard for a few months now. See below:

My goal here is to lay out the interactions and chain of events that leads a visitor to a new media campaign, and then to document the primary engagement methods after they're in new media land. I didn't include every possible linkage arrow, and perhaps need to cut out some existing low priority ones to clean it up. The extent to which I go into other departments and the general level of detail is also somewhat arbitrary.
I used ArgoUML to create the model, which I was able to download for free and seems to be more for developers, so please excuse the ugliness. I had wanted to use Omnigraffle but haven't purchased it yet and waited until after my trial license had expired (only 14 days??) to begin this project. Working in 2d space was limiting: I would have preferred three or more dimensions to help organize & separate the different units.
What do you think - any missing areas, disagreements, or other thoughts? Have people used logic models for other projects? I plan to continue improving this so would be glad to get feedback. I would like to help develop stronger theoretical infrastructure for new media, and I think logic models are one good approach to support more rigorous program management & evaluation.
This chart takes a look at voter registration, turnout, and turnout-of-registered trends across the past four presidential elections in the United States: 1996, 2000, 2004, and 2008. The data come from the Current Population Survey and are smoothed to reduce the variability across age due to survey sampling. My previous version showed voter registration and turnout for 1996-2004, so this version has the added comparison of the 2008 elections.
A few things that pop out:
What other thoughts or interpretations do people have? And what do you think about the chart - any ideas for improvement? The main thing I would like to add is an additional table or bar chart showing the distribution of the population across age groups, which will help with gauging each age cohort's relative importance in terms of total votes.
Finally, I have attached the Excel file with the data and the chart itself, so feel free to download it and play around with things. It also includes an alternative black-background version which should be better for projection and makes the colors pop - it was inspired by Al Gore's climate change slides, which were in the background as I updated this chart.
The student elections were last week at The University of Texas - congrats to Liam, et al. The focus was on Student Government but elections also included Texas Student Media, Graduate Student Assembly, and others. Overall turnout was 10,018 votes (PDF), or 20% of the student body based on Fall 2008 enrollment figures. While not yet available, the actual student body in the spring semester tends to be slightly lower than the fall due to drop-outs and transfers. Once spring enrollment data is released the estimated turnout will likely be 0.5 to 1.5 percentage points higher.
Here is a long-term graph of turnout:

It's pretty clear that 1) online voting increases turnout, 2) a larger student body tends to have lower turnout, 3) while recent turnout is relatively high, we haven't gotten close to pre-1970s turnout. Thoughts?
The role of online social media continues to grow in importance for political organizations. Facebook, MySpace, YouTube, Flickr, Twitter, and dozens of other sites need to be managed, tracked, and integrated. This takes a lot of staff time, but luckily these services continue to expand their support for external programs that can manipulate data or perform actions. APIs (application programming interfaces) allow different websites or computers to talk together and do things in the background. Even sites which don't provide official APIs can often be automated using third-party tools.
In this article I'll show one simple script that uses Python and a third-party library (libgmail) to load a file of emails into gmail contacts. It's very common for web applications to support interfacing with gmail accounts to add users, so once your emails are in gmail it's simple to import them into Flickr, Twitter, etc.

It's a little tricky to show registration, turnout, and turnout of registered by age for three different elections all at once. I hope that the chart makes clear the great gains in 2004 for young voters, driven by huge increases in registration combined with strong GOTV efforts.
Selected items to note:
Feb 2009: uploaded a slightly improved chart.
I was playing around with Census data tonight and wanted to see how a Lowess (bandwidth=.15) or polynomial (6-term) smoother compared. Both deal with the sampling variability of Census data by smoothing out a line as an approximation; the polynomial version takes all of the data into account while the Lowess version only incorporates nearby data (i.e. local vs. global smoothing).
Earlier this week I uploaded a working paper I wrote back in January that compared registration, turnout, and turnout of registered between 1996 and 2006. I used a polynomial smoother because that was readily available in Excel, but I was worried it might be biasing the edges. Hat tip to Avi Feller for suggesting the use of Lowess back then.
It looks like either is fine for registration or turnout, with Lowess being a little bit better at showing local changes as one would expect. I still need to look at turnout of registered though Adding in turnout of registered there is a stronger case for Lowess in that it better shows the 18 year old turnout bump among those who are registered.

Update: For those following along at home, here is Stata code you can use to try it out (data compliments of NBER):
drop if prcitshp == 5 | prtage < 18
gen voted = pes1 == 1
gen registered = voted == 1 | pes2 == 1
gen age = prtage if prtage > 0
preserve
collapse (mean) registered (mean) voted, by(age)
lowess registered age, bwidth(0.15) gen(registered_smooth) nograph
lowess voted age, bwidth(0.15) gen(voted_smooth) nograph
list, clean
restore, preserve
* Repeat if registered == 1
* Copy results into Excel and make a chart (see attached .xlsx file for Excel 2007/2008).