如何解決python 圖表中文顯示亂碼問題

一品威客01發表於2021-02-25

目前搜到的是,下載一個字型到程式路徑,設定成預設字型。

圖表顯示中文設定

import matplotlib as mpl # 新增包 from matplotlib.ticker import MultipleLocator, FormatStrFormatter #新增函式 mpl.rcParams["font.size"] = 15 # 設定字型大小 custom_font = mpl.font_manager.FontProperties(fname="../cj_data/ttf/msyh.ttf") #匯入下載的字型檔案 複製程式碼

 

混淆矩陣 - 二元分類效果評估方法

y_true1=list(y_test)[:100] cm = confusion_matrix(y_true1, y_pre) plt.matshow(cm) plt.title(u"混淆矩陣",fontproperties=custom_font) plt.colorbar() plt.ylabel(u"實際型別",fontproperties=custom_font) plt.xlabel(u"預測型別",fontproperties=custom_font) plt.show() 複製程式碼

相關文章