-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: handling of missing values when dropping rows with outliers (#101)
Closes #7. ### Summary of Changes Previously, calling `drop_rows_with_outliers` on a `Table` that had at least one missing value in a numerical column cause the resulting table to be completely empty. This PR introduces two changes: 1. Missing values are never considered outliers. 2. Missing values are ignored when computing the standard deviation. --------- Co-authored-by: lars-reimann <[email protected]>
- Loading branch information
1 parent
a0c56ad
commit 0a5e853
Showing
3 changed files
with
29 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
tests/safeds/data/tabular/containers/_table/test_list_columns_with_numerical_values.py
This file was deleted.
Oops, something went wrong.