Feature Importance for Regression Models

It looks like the data you provided still needs to go through linear regression preprocessing (checking for redundant variables, removing highly correlated variables, checking that you have enough unique samples per group vs the number of variables you have).

In particular I found a loop where all the variables you provided had the exact same input which causes the ERROR Linear Regression Learner 3:36 Execute failed: 0 is smaller than, or equal to, the minimum (0)

This issue was also seen for other members and the answer reported there applies to your case as well:

One thing I find curious though is that you’re using Linear Regression with string variables. In such a case, why not try tree regression instead?

3 Likes