Hey Guys, I am getting the below error the code component giving me this issue is below:
imputer = mf.MissForest()
X_imputed = imputer.fit_transform(df)
Solved! Go to Solution.
@JenzEkan , Try passing the parameter value for criterion to the code as below:
imputer = mf.MissForest(criterion = 'friedman_mse')
X_imputed = imputer.fit_transform(df)
Please accept if it worked.