matplotlib画图显示中文
程序员文章站
2024-01-19 15:13:28
...
网上资料比较少自己发现了,拿出来分享
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['FangSong'] # 制定默认字体
plt.rcParams['axes.unicode_minus'] = False # 解决负号显示为方块的问题