I am trying to gather all the repeated values and their count.
In the above picture suppose fox appears 3 then Fox 3
in that way I want. I tried to use group by but it shows me error of "Sum." something.
studios.groupby(a).value_counts().to_frame('count')
Thanks in advance