plt.rcParams[‘axes.unicode_minus‘] = False #解决保存图像是负号‘ 这句话是什么意思?

plt.rcParams是一个字典,它存储了matplotlib的配置参数,用于控制图形的外观和行为。⁴

plt.rcParams[‘axes.unicode_minus’]是一个配置参数,它决定了坐标轴上负号的显示方式。

如果设置为True(默认值),则使用Unicode字符U+2212表示负号,这个字符比ASCII字符U+002D更长。³

如果设置为False,则使用ASCII字符U+002D表示负号,这个字符可能与减号混淆。³

有时候,使用Unicode负号会导致图像保存时出现乱码或无法显示的问题,所以可以将plt.rcParams[‘axes.unicode_minus’]设置为False来解决。¹²

Unicode字符U+2212和ASCII字符U+002D的样子如下:

Unicode负号:−
ASCII负号:-

您可以看到,Unicode负号比ASCII负号更长一些。

2023/3/19(1) Customizing Matplotlib with style sheets and rcParams. https://matplotlib.org/stable/tutorials/introductory/customizing.html 访问时间 2023/3/19.
(2) Unicode minus — Matplotlib 3.7.1 documentation. https://matplotlib.org/stable/gallery/text_labels_and_annotations/unicode_minus.html 访问时间 2023/3/19.
(3) plt.rcParams[‘font.sans-serif‘] = [‘SimHei‘] 和plt.rcParams[‘axes … https://blog.csdn.net/Fwuyi/article/details/123084642 访问时间 2023/3/19.
(4) Python 之 plt.rcParams[] - 赏尔 - 博客园. https://www.cnblogs.com/shanger/p/13021452.html 访问时间 2023/3/19.
(5) matplotlib.pyplot.rc — Matplotlib 3.7.1 documentation. https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.rc.html 访问时间 2023/3/19.

你可能感兴趣的:(机器学习,python,matplotlib,开发语言)