I am trying an alternate way to visualize a pandas series using matplotlib/seaborn. But I am not able to do it. Is there any way?
I have no problem visualizing it using the df.plot() method of pandas.
df2.groupby('Company').Company.count()
Data looks like this:
100 a
101 b
102 c
103 d
104 a
105 c
106 d
107 b
108 a
109 c


