matplotlib 圖示 中文亂碼, 與 wordcloud 詞雲圖 中文亂碼 解決方法

__username發表於2024-06-25

matplotlib

import matplotlib.pyplot as plt
plt.rcParams["font.sans-serif"] = ["SimHei"] # 設定字型
plt.rcParams["axes.unicode_minus"] = False # 該語句解決影像中的“-”負號的亂碼問題

wordcloud

wordcloud = WordCloud(width=800, height=400, background_color='white', font_path='C:\\Windows\\Fonts\\STLITI.TTF').generate_from_frequencies(word_counts) # C:\WINDOWS\Fonts 確保支援中文 按照了這個字型,(不一定是這)個字型

相關文章