pandas.DataFrame.sparse.to_dense

DataFrame.sparse.to_dense()[source]

Convert a DataFrame with sparse values to dense.

New in version 0.25.0.

Returns
DataFrame

A DataFrame with the same values stored as dense arrays.

Examples

>>> df = pd.DataFrame({"A": pd.arrays.SparseArray([0, 1, 0])})
>>> df.sparse.to_dense()
   A
0  0
1  1
2  0

© 2008–2021, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/1.3.4/reference/api/pandas.DataFrame.sparse.to_dense.html