You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider putting this in the following: correlation_dataframe = df.corr().abs().unstack().sort_values().round(7).drop_duplicates()
Note .round(7) had been added before .drop_duplicates(). Since we can have multiple values close to unity or zero. For some problems round decimals can be even smaller then 7.
The text was updated successfully, but these errors were encountered:
Hi @Harry040
Thanks for picking up on this thread. But I tested it on multiple dataframes and I have not seen it happen yet. Can you provide a code sample where this would impact as you suggesting?
Thanks
Auto Vimal
featurewiz/featurewiz/sulov_method.py
Line 90 in a793324
Consider putting this in the following:
correlation_dataframe = df.corr().abs().unstack().sort_values().round(7).drop_duplicates()
Note
.round(7)
had been added before.drop_duplicates()
. Since we can have multiple values close to unity or zero. For some problems round decimals can be even smaller then 7.The text was updated successfully, but these errors were encountered: