Closed lcrmorin closed 1 month ago
Hi @lcrmorin. The scorecard class has the attribute binningprocess, so you can retrieve individual plots from the binning process (see binning process tutorials). Let me know if that works for you.
Indeed, after fitting the scorecard, the following code achieve the same as the data exploration loop presented before.
for c in features:
scorecard.binning_process_.get_binned_variable(c).binning_table.plot(metric="event_rate")
After looking trough the documentation It seems that there is no way to plot binning tables from a scorecard.
My 'problem' is that I end up performing the same binning multiple times.
For data exploration I will do something like this:
Then for modelling:
The scorecard table provides all the splits. However there is no way to get back to the individual plots easily.