An open API service indexing awesome lists of open source software.

https://github.com/camdavidsonpilon/demographica

Analyse US name distributions and create age profiles of your users
https://github.com/camdavidsonpilon/demographica

Last synced: about 1 year ago
JSON representation

Analyse US name distributions and create age profiles of your users

Awesome Lists containing this project

README

          

demographica
============

Analyse US name distributions and create age profiles.

names = open('sample_first_names.tsv').readlines()
name_distribution = compute_name_frequencies(names)
age_distribution = age_calculator(name_distribution)
sex_distribution = sex_calculator(name_distribution)
print sex_distribution
pplot(age_distribution)