I think `s.cat.density` is appropriate here ``` In [1]: s = Series(list('aabbcccc')).astype('category') In [2]: 100*len(s.cat.categories)/len(s) Out[2]: 37 ```