In [1]:
import matplotlib.pyplot as plt; plt.rcdefaults()
import numpy as np
import matplotlib.pyplot as plt
In [17]:
stats = {'Women':30, 'Men':56, 'Unisex':1.6, 'Not Available':10}
In [18]:
plt.bar(range(len(stats)), stats.values(), align='center')
plt.xticks(range(len(stats)), stats.keys())
plt.xlabel('Gender')
plt.ylabel('% in bibfile for this thesis')
plt.opac
Out[18]:
In [21]:
plt.show(alpha=0.4)
In [ ]: