When using ax param in the FeatureCorrelation visualizer to specify an axes location within a matplotlib subplot, it would not plot in the correct position. However, it would create an entirely new plot
To fix this, I changed the ax in the Super init so it was not explicitly setting it to None which was preventing axes from being specified
When using ax param in the FeatureCorrelation visualizer to specify an axes location within a matplotlib subplot, it would not plot in the correct position. However, it would create an entirely new plot
To fix this, I changed the ax in the Super init so it was not explicitly setting it to None which was preventing axes from being specified
Before:
After:
Fixes #1163