【matplotlib】生成各种图表

一、场景

    工作中,可能需要使用脚本分析各种数据,并生成图表

 

二、工具

    matplotlib

    https://matplotlib.org/stable/install/index.html

 

三、安装

python -m pip install -U pip
python -m pip install -U matplotlib

 

 

四、生成图表

1、折线图

import matplotlib.pyplot as plt
 
# 准备数据
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
 
# 创建折线图
plt.plot(x, y)
 
# 设置图表标题
plt.title('line example')
 
# 设置x轴和y轴标签
plt.xlabel('x')
plt.ylabel('y')
 
# 显示图表
plt.show()

 图示

 

五、其他

1、UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown plt.show()

IDE直接运行不行,需要在交互式窗口运行,打开terminal

$ python3 test.py

 

posted @ 2024-07-22 16:38  代码诠释的世界  阅读(58)  评论(0编辑  收藏  举报