-
-
Couldn't load subscription status.
- Fork 19.2k
Closed
Labels
Milestone
Description
s = pd.Series(np.random.randn(100))
s.plot(kind='hist')
s.hist()
Running s.plot(kind='hist') labels the y axis with the word 'Degree'. A more informative label might be 'count', 'frequency', or 'density'.
Also, it seems strange that s.plot(kind='hist') and s.hist() produce plots with different labels / gridlines.