I'm trying to plot a confusion matrix in a jupyter notebook and the plot does not display properly.
My code is:
import scikitplot
plt.close()
scikitplot.metrics.plot_confusion_matrix(y_test, y_predicted_test)
and this code produces the plot:
Any suggestions on how to get the plot to display properly will be greatly appreciated.
Charles