We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e37e67 commit 55b453fCopy full SHA for 55b453f
1 file changed
superset/utils/pandas_postprocessing/histogram.py
@@ -49,7 +49,7 @@ def histogram(
49
groupby = []
50
51
# drop empty values from the target column
52
- df = df.dropna(subset=[column])
+ df.dropna(subset=[column], inplace=True)
53
if df.empty:
54
return df
55
0 commit comments