We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938a601 commit 06524ccCopy full SHA for 06524cc
src/ydata_profiling/model/pandas/describe_numeric_pandas.py
@@ -138,7 +138,7 @@ def pandas_describe_numeric_1d(
138
}
139
)
140
stats["iqr"] = stats["75%"] - stats["25%"]
141
- stats["cv"] = stats["std"] / stats["mean"] if stats["mean"] else np.NaN
+ stats["cv"] = stats["std"] / stats["mean"] if stats["mean"] else np.nan
142
stats["p_zeros"] = stats["n_zeros"] / summary["n"]
143
stats["p_infinite"] = summary["n_infinite"] / summary["n"]
144
0 commit comments