giorgiop / aaai-2015-demographics

Code and data for the AAAI 2015 paper entitled: "Predicting the demographics of Twitter users from social evidence using website traffic data"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repository contains data and code to reproduce the results of the paper "Predicting the demographics of Twitter users from website traffic data", by Aron Culotta, Nirmal Ravi, and Jennifer Cutler, presented at the 29th AAAI Conference on Artificial Intelligence (AAAI-15), 2015.

Abstract

Understanding the demographics of users of online social networks has important applications for health, marketing, and public messaging. In this paper, we predict the demographics of Twitter users based on whom they follow. Whereas most prior approaches rely on a supervised learning approach, in which individual users are labeled with demographics, we instead create a distantly labeled dataset by collecting audience measurement data for 1,500 websites (e.g., 50% of visitors to gizmodo.com are estimated to have a bachelor's degree). We then fit a regression model to predict these demographics using information about the followers of each website on Twitter. The resulting average held-out correlation is .77 across six different variables (gender, age, ethnicity, education, income, and child status). We additionally validate the model on a smaller set of Twitter users labeled individually for ethnicity and gender, finding performance that is surprisingly competitive with a fully supervised approach.

Content

This repository is organized as follows:

  • data: (some) of the data used in the experiments.
  • src: iPython notebooks to reproduce results.

###data

  • brands.json : contains names of 1500 websites
  • demo.json : contains variables information like gender,age etc for the 1500 websites
  • twitter-cred.json : accounts used in data collection

###src

  • data_collection.ipynb : data collection code
  • data_processing.ipynb : data processing code

###Installation and configuration

  1. Install MongoDB
  2. Install python modules
$ pip install anaconda
$ pip install pymongo
$ pip install twython
$ pip install ipython
$ pip install twutil
  1. Add your twitter credentials to data/twitter-cred.json.
  2. Clone this repo
$ git clone https://github.com/tapilab/aaai-2015-demographics.git
  1. Run the notebooks
$ cd aaai-2015-demographics/src
$ ipython notebook --matplotlib inline data_collection.ipynb
$ ipython notebook --matplotlib inline data_processing.ipynb

Static Notebooks

Static versions of the iPython notebooks are here:

About

Code and data for the AAAI 2015 paper entitled: "Predicting the demographics of Twitter users from social evidence using website traffic data"

License:GNU General Public License v3.0


Languages

Language:Python 100.0%