欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib 使用注意点

程序员文章站 2022-02-05 19:28:29
...

matplotlib 使用注意点

2019-3-29

解决matplotlib 中文图例乱码
# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['SimHei']
plt.rcParams['axes.unicode_minus'] = False
无图形界面的Linux使用 matplotlib 画图
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt

fig, axs = plt.subplots()
...
plt.savefig(filename);  #eg, filename = 'test.png' 
相关标签: matplotlib