Skip to content

Commit

Permalink
Merge pull request #42 from autonomio/fix_pd_drop
Browse files Browse the repository at this point in the history
Fix pd drop
  • Loading branch information
mikkokotila authored Apr 20, 2024
2 parents c6ac9da + e58b203 commit 166e4a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wrangle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

del array, col, df, dic

__version__ = '0.7.5'
__version__ = '0.7.6'
2 changes: 1 addition & 1 deletion wrangle/df/df_corr_randomforest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def df_corr_randomforest(data, y, destructive=True):
if destructive is False:
data = data.copy(deep=True)

x = data.drop(y, 1).values
x = data.drop(y, axis=1).values
labels = data.drop(y, axis=1).columns
y = data[y].values

Expand Down

0 comments on commit 166e4a4

Please sign in to comment.