-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
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.