Skip to content

Commit

Permalink
fix outlier
Browse files Browse the repository at this point in the history
  • Loading branch information
armandleopold committed Feb 23, 2024
1 parent 80920eb commit 7f247a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion outlier_detection_pack/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
df = pd.concat([df, encoded_df.reset_index(drop=True)], axis=1)

# Exclude id_columns from df before Multivariate Outlier Detection
df_for_multivariate = pack.df_source.drop(columns=id_columns)
df_for_multivariate = df.drop(columns=id_columns)

# Multivariate Outlier Detection
multivariate_outliers = pd.DataFrame()
Expand Down
2 changes: 1 addition & 1 deletion outlier_detection_pack/properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ icon: icon.png
name: outlier_detection
type: reasonability
url: https://github.com/qalita-io/packs/tree/main/outlier_detection_pack
version: 2.0.0
version: 2.0.1
visibility: public

0 comments on commit 7f247a4

Please sign in to comment.