Created
February 23, 2014 04:57
-
-
Save deybhayden/9167069 to your computer and use it in GitHub Desktop.
Top 10 Last Names in MLB History
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import pandas as pd | |
df = pd.read_csv('lahman-csv_2014-01-31/Master.csv') | |
count_series = df.nameLast.value_counts() | |
top_10_names = count_series[:10] | |
plt.figure() | |
top_10_names.plot(kind='bar').set_title('Most Popular Last Names in MLB' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment