import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
marathon_2015_2017 = pd.read_csv('./boston_15_17.csv')
labels = 'Male', 'Female'
labels
('Male', 'Female')
explode = (0, 0.1)
index_0 = marathon_2015_2017[marathon_2015_2017['M/F'] == '0'].index
marathon_2015_2017 = marathon_2015_2017.drop(index_0)
marathon_2015_2017['M/F'].value_counts()
M 43131
F 35907
Name: M/F, dtype: int64
plt.figure(figsize=(7,7))
plt.pie(marathon_2015_2017['M/F'].value_counts(), explode=(0, 0.05), labels=labels, startangle=90, shadow=True, autopct='%.2f')
plt.title('Male vs Female', fontsize=18, color='g')
plt.legend(['Male','Female'], loc='upper right')
plt.show()
