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 92f2097 commit 210ae09Copy full SHA for 210ae09
1 file changed
module-23-evidently/demo/main.py
@@ -32,7 +32,7 @@ def load_and_clean(path: str) -> pd.DataFrame:
32
df["price"].astype(str).str.replace(r"[\$,]", "", regex=True).astype(float)
33
)
34
df = df.dropna()
35
- # Drop extreme price outliers so the drift charts show the actual distribution
+ # Drop extreme price outliers
36
return df[df["price"] <= MAX_PRICE]
37
38
0 commit comments