所遇问题
使用Python绘图时,遇到中文显示不出来,显示的是方框形式:
且出现如下警告:
总结,Python绘图针对不同绘图库的不同解决显示中文情况,如下两种情况:
情况一: matplotlib库绘图显示中文
方式一
from pylab import mpl
mpl.rcParams["font.sans-serif"] = ["SimHei"] # 设置显示中文字体 宋体
mpl.rcParams["axes.unicode_minus"] = False #字体更改后,会导致坐标轴中的部分字符无法正常显示,此时需要设置正常显示负号
方式二
下面这种方式,中文显示为宋体,英文显示为Times New Roman
import matplotlib.pyplot as plt
from matplotlib import rcParams
config = {
"font.family": 'serif',
"mathtext.fontset": 'stix', # matplotlib渲染数学字体时使用的字体,和Times New Roman差别不大
"