I constructed a predictive model using the GBM package in R. I have good results and I am able to see the feature importance list to see which variables are most important to the model. I am struggling with an editor's question asking for direction of the variables.
For instance:
age variable: which age group is most important, rather than age overall?
region: which specific region, rather than region as a variable overall?
I see some implementation of this with LIME, however the GBM package is not compatible with LIME and I am stuggling with implementing it otherwise. Is there a manual way to see this?
My current idea to run the GBM model one by one and compare results. For instance, run with region A and all others the same, then region B, C, D, E, etc. Compare the final results and see more information about the level of each variable.
Does anyone have further advice or a quicker solution? Thanks