Dato:Come è possibile tracciare un istogramma in panda utilizzando i valori nominali?
ser = Series(['one', 'two', 'three', 'two', 'two'])
Come posso tracciare un'istogramma base di questi valori?
Ecco una versione ASCII di quello che avrei voluto vedere in matplotlib:
X
X X X
-------------
one two three
Sono stanco di vedere:
TypeError: cannot concatenate 'str' and 'float' objects
che è esattamente quello che stavo cercando. Grazie mille! –
Un'alternativa è usare il [seaborn] (https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.countplot.html) 'countplot'. – Romain