


This article mainly introduces the analysis of Chinese display parameter settings of python matplotlib, which has certain reference value. Friends who are interested in python can refer to it.
Recently, when I was learning Python's famous Drawing package matplotlib, I found that sometimes legends and other settings could not display Chinese properly, so I wanted to solve this problem.
PS: This article is only for Windows, other platforms are for reference only.
The reason
is roughly that there are no Chinese fonts in the matplotlib library.
I installed anaconda, which is the folder where the corresponding matplotlib font is located (how to find the matplotlibconfig file folder, the solution will be described below, easyman~).
C:\Anaconda64\Lib\site-packages\matplotlib\mpl-data\fonts\ttf
Solution
Now to sort me out I think a better solution is:
Set parameters every time you write code
#coding:utf-8 import matplotlib.pyplot as plt plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签 plt.rcParams['axes.unicode_minus']=False #用来正常显示负号 #有中文出现的情况,需要u'内容'
Once and for all (recommended)
import matplotlib matplotlib.matplotlib_fname() #将会获得matplotlib包所在文件夹
Then enter C:\Anaconda64\Lib\site-packages\matplotlib\mpl-data and you can see it in this folder to the matplotlibrc configuration file.
1) Open the configuration file and find the following line:
#font.serif : Bitstream Vera Serif, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif
Then change the preceding NoteRemove!
2) Find Chinese fonts and put them in the matplotlib font library.
Copy the font under the Windows folder: C:\Windows\Fonts\MicrosoftYaHeiUI, and then paste it into the C:\Anaconda64\Lib\site-packages\matplotlib\mpl-data\fonts\ttf folder, And rename it Vera.ttf.
Note: The function of this step is actually to replace a default font in matplotlib with the Chinese font we copied, and change the Chinese font name to the font name in matplotlib.
Actually, there are other solutions, but they seem to have failed in my case.
Supplement
The negative sign of the coordinate axis is displayed normally
#去掉了注释符号,同时,改为False axes.unicode_minus : False
Example
#coding:utf-8 import matplotlib.pyplot as plt plt.plot((1,2,3),(4,3,-1)) plt.xlabel(u'横坐标') plt.ylabel(u'纵坐标') plt.show()
##Summary
Above This is the entire content of this article about the analysis of Chinese display parameter settings of python matplotlib. I hope it will be helpful to everyone. Interested friends can continue to refer to this site:Related recommendations:
Use regular expressions in python Example code of formula connector
Python implementation of outputting colored string case analysis
Python implementation of genetic algorithm code
The above is the detailed content of python matplotlib Chinese display parameter setting analysis_python. For more information, please follow other related articles on the PHP Chinese website!

1.0简介三维图像技术是现在国际最先进的计算机展示技术之一,任何普通电脑只需要安装一个插件,就可以在网络浏览器中呈现三维的产品,不但逼真,而且可以动态展示产品的组合过程,特别适合远程浏览。立体图视觉上层次分明色彩鲜艳,具有很强的视觉冲击力,让观看的人驻景时间长,留下深刻的印象。立体图给人以真实、栩栩如生,人物呼之欲出,有身临其境的感觉,有很高的艺术欣赏价值。2.0三维图画法与类型首先要安装Matplotlib库可以使用pip:pipinstallmatplotlib假设已经安装了matplotl

安装步骤:1、打开PyCharm集成开发环境;2、转到“File”菜单,然后选择“Settings”;3、在“Settings”对话框中,选择“Project: <your_project_name>”下的“Python Interpreter”;4、单击右上角的加号按钮“+”,在弹出的对话框中搜索“matplotlib”;5、选择“matplotlib”安装即可。

深入学习matplotlib颜色表,需要具体代码示例一、引言matplotlib是一个功能强大的Python绘图库,它提供了丰富的绘图函数和工具,可以用于创建各种类型的图表。而颜色表(colormap)是matplotlib中一个重要的概念,它决定了图表的配色方案。深入学习matplotlib颜色表,将帮助我们更好地掌握matplotlib的绘图功能,使绘

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

一、添加文本标签plt.text()用于在绘图过程中,在图像上指定坐标的位置添加文本。需要用到的是plt.text()方法。其主要的参数有三个:plt.text(x,y,s)其中x、y表示传入点的x和y轴坐标。s表示字符串。需要注意的是,这里的坐标,如果设定有xticks、yticks标签,则指的不是标签,而是绘图时x、轴的原始值。因为参数过多,不再一一解释,根据代码学习其用法。ha='center’表示垂直对齐方式居中,fontsize=30表示字体大小为3

安装教程:1、打开命令行窗口,确保已经安装了Python和pip;2、输入“pip install matplotlib”命令安装matplotlib;3、等待安装完成后,通过import matplotlib.pyplot as plt代码验证matplotlib是否成功安装,若没有报错,说明matplotlib已经成功安装。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

显示中文的方法有安装中文字体、配置字体路径、使用中文字符等。详细介绍:1、安装中文字体:首先,您需要安装支持中文字符的字体文件。常用的中文字体有SimHei、SimSun、Microsoft YaHei等;2、配置字体路径:在代码中,需要指定字体文件的路径;3、使用中文字符:在代码中,直接使用中文字符即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
