18
ser = Series(['one', 'two', 'three', 'two', 'two'])
如何繪製這些值的基本直方圖?
這裏是什麼,我會希望在matplotlib看到一個ASCII版本:
X
X X X
-------------
one two three
我厭倦了看到:
TypeError: cannot concatenate 'str' and 'float' objects
這正是我一直在尋找。非常感謝你! –
另一種方法是使用[seaborn](https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.countplot.html)'countplot'。 – Romain