标签: python seaborn
我正在使用seaborn从python中的4个混淆矩阵创建4个热图。有没有一种方法可以绘制每个象限中的每个热图?
import seaborn as sn hmNB = sn.heatmap(cmNB, annot=True) hmSVM = sn.heatmap(cmSVM, annot=True) hmLR = sn.heatmap(cmLR, annot=True) hmKNN = sn.heatmap(cmKNN, annot=True)