Thanks for this! It’s a linear reg model I'm working with. Is it not fair to assume that some features have an overall negative and some an overall positive impact on the target?
I'm wondering if it makes sense to plot the feature weights that the AutoML batch predict creates for each prediction against the feature values? That way we can say this value contributed X increase or decrease to the target prediction.
Here are two visuals I'm thinking about using to help interpre the features. First is a box and whisker which looks at all the local feature weights of each feature. This, I think, is telling me that sessions, cartdetail rate, cartDropOff and avgpricesold make quite large contributions to the predictions?
If say I wanted to visualise the relationship between of sessions on conversion rate predictions I think I could plot their local feature weights against their feature values so something like this:
it certainly looks nice :) but not sure if I am right to read something from that that the more sessions there are the more likely it is that conversion rate prediction will be less - which is generally true anyway.
Thanks
Aaron