Hey Guys,
I am trying to create a python script in Alteryx for imputation but I am getting the below error while importing the MissForest module. Please let me know what is the issue here.
Solved! Go to Solution.
Hi @JenzEkan
You must install the library before using it. To do this, follow these 2 steps:
1)Run Alteryx as a Administrator
2)Run this piece of code inside your python tool to install the package
from ayx import Package
Package.installPackages(['MissForest'])
Got it resolved. Thanks