plt.title("ROC for {}".format(self.name))
plt.legend(loc="lower right")
plt.xlim([-0.02,1])
plt.ylim([0,1.1])
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
After Change
// Set the limits for the ROC/AUC (always between 0 and 1)
self.ax.set_xlim([-0.02, 1.0])
self.ax.set_ylim([ 0.00, 1.1])
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////