在VScode中显示matplotlib图表及中文标题

"""画简单的折现图,增加图表信息"""
import matplotlib.pyplot as plt
squares = [1,4,9,16,25,36,49]
fig,ax = plt.subplots()
##linewidth=5 设置宽度
ax.plot(squares,linewidth=5)

##图标的标题
ax.set_title("平方数")
plt.show()

问题1:不能显示图表
尝试的方法:
1)重新安装jupyter
2)安装插件 Jupyter Notebook Renderers
3)ctrl + shit + p 进入用户设置:在 Jupyter中: Theme Matplotlib Plots栏打上勾

莫名其妙的好的。不知道哪个起了作用。

问题2:图表的标题显示问题
修改一个文件的设置。
文件的位置:

>>> import matplotlib
>>> matplotlib.matplotlib_fname()

#font.family: sans-serif
改为:font.family: Microsoft YaHei

你可能感兴趣的:(python,matplotlib,vscode,python)