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
First off, thank you for maintaining such a useful library, I truly appreciate it.
A bug has been identified in the ImputationKernel class regarding the imputation_order parameter. The handling of "ascending" and "descending" orders is incorrect due to a typo and improper sorting configuration.
- Fixed typo "decending" to "descending".
- Updated sorting configuration for ascending order to use ascending=True.
Related to issue AnotherSamWilson#90
First off, thank you for maintaining such a useful library, I truly appreciate it.
A bug has been identified in the
ImputationKernel
class regarding theimputation_order
parameter. The handling of"ascending"
and"descending"
orders is incorrect due to a typo and improper sorting configuration.Problematic Code
Issues
"decending"
should be"descending"
.ascending=False
should beascending=True
for ascending order.Proposed Fix
Update the code as follows:
Steps to Verify
Test the following code to compare
imputation_order
for"ascending"
and"descending"
:Additional Information
The text was updated successfully, but these errors were encountered: