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
Thanks for all the work on this package - it's been really helpful.
I noticed a minor bug. When running associations or compute_associations the nan_replace_strategy affects the original input data. Hence, if you have a dataframe with NaN values in certain columns, these get replaced in the original input. It would be better to work on a copy of the original data, instead of processing the data inplace.
Pandas gives the following warning:
SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
The text was updated successfully, but these errors were encountered:
Thanks for all the work on this package - it's been really helpful.
I noticed a minor bug. When running associations or compute_associations the nan_replace_strategy affects the original input data. Hence, if you have a dataframe with NaN values in certain columns, these get replaced in the original input. It would be better to work on a copy of the original data, instead of processing the data inplace.
Pandas gives the following warning:
The text was updated successfully, but these errors were encountered: