pandas.Series.sparse.density#

Series.sparse.density[source]#

The percent of non- fill_value points, as decimal.

Examples

>>> from pandas.arrays import SparseArray
>>> s = SparseArray([0, 0, 1, 1, 1], fill_value=0)
>>> s.density
0.6