When I plot a pandas Series in ipython notebook and setting the label as suggested by this answer:
plt1=some_series.plot(marker='o', title='Count Distribution')
plt1.set_xlabel='x Count'
plt1.set_ylabel='y Frequecy'
and evaluate the cell. The plot shows with the title, but not the x or y labels. How can I do this in ipython notebook?
And the comment by Chrispy on that post
Is there a particular reason why x and y labels can't be added as arguments to pd.plot()?
might also be a related issue worth answering.
EDIT: Thanks, now I know the error, my fault. But why doesn' t it throw me an error on the value assignment to methods?