You can simply install ylabel by calling pylab.ylabel :
pylab.ylabel('')
or
pylab.axes().set_ylabel('')
In your example, plt.axes().set_ylabel('') will not work because you do not have import matplotlib.pyplot as plt in your code, so plt does not exist.
Alternatively, the groups.plot command returns an instance of Axes , so you can use it to install ylabel :
ax=groups.plot(kind='pie', shadow=True) ax.set_ylabel('')
source share