I used ROCAUC in yellowbrick. I want to change the font size and position of the legend. What should I do? Micro average and macro average appear in the same line color. Is there a way to make the two lines different?
from yellowbrick.classifier import ClassBalance, ROCAUC, ClassificationReport, ClassPredictionError
clf=model_sme5.fit(X_sme_train5,y_sme_train5)
rocauc = ROCAUC(clf,classes=['No DL','DL'])
rocauc.score(X_test5,y_test5)
r = rocauc.poof()