PDPbox
PDPbox copied to clipboard
python partial dependence plot toolbox
While I'm trying to install pdpbox, it seems a conflict happened to my matplotlib: note: This error originates from a subprocess, and is likely not a problem with pip. ERROR:...
 
Have to admit that your package works really well, I really like the contour plots in it to see the impact of the two attribute features. I would like to...
Is there a chance we could loosen the matplotlib requirement for this project? It's currently requiring `matplotlib==3.1.1`; I'm wondering if something more flexible, like `matploblib>=3,
Hello, would be good to replace the grid value calculation in pdp_calc_utils.py line 237: `value_grids = np.percentile(feature_values, percentile_grids)` with `value_grids = np.nanpercentile(feature_values, percentile_grids)` This will avoid returning an array with...
I've got pdp_isolate to work on other features, but it throws an exception "ValueError: No objects to concatenate" when plotted for column "f66". Does this mean there isn't enough information...
Thanks for creating such a tool for Python partial dependence plot. I do find an issue, though. Right now in my project, the trained model is wrapped as a pipeline....
Hi @SauceCat , quick conceptual question: Say if I selected I given feature to analyze in my multiclass classifier. In `pdp.pdp_isolate() ` function for PDP plot, when would make sense...