以下都是可视化链接
1、matplotlib 【 静态】
https://matplotlib.org/stable/gallery/index.html
2、echarts 【 json格式,需要嵌入在python中,有交互】
https://echarts.apache.org/examples/zh/index.html
3、plotly 【python有交互】
https://plotly.com/python/
# 折线图
import matplotlib.pyplot as plt
from matplotlib import font_manager
import random
# 中文设置,具体的位置从终端-- fc-list :lang=zh 查路径
myfont=font_manager.FontProperties(fname='C:\Windows\Fonts\simfang.ttf')
x=range(0,120)
y=[random.randint(20,25) for i in range(120)]
#label 为了图例去显示,color 也可以用16进制,线条风格 linestyle : 表示虚线
plt.plot(x,y,label='温度',color='b',linestyle='-')
#添加多条折线
# plt.plot(x,y1,label='随意',color='g',linestyle='--')
# 调整x轴坐标
x_label=['10点{}分'.format(i) for i in range(60)]
x_label+=['11点{}分'.format(i) for i in range(60)]
# [::10] 步长设置为10,数字的步长跟字符串步长一致 rotation 字体旋转90度
plt.xticks(list(x)[::10],x_label[::10],rotation=90,fontproperties=myfont)
#自动旋转日期标记
plt.gcf().autofmt_xdate()
plt.yticks(y)
# 添加横纵坐标描述信息
plt.xlabel('时间',fontproperties=myfont)
plt.ylabel('温度 单位(℃)',fontproperties=myfont)
#折线图添加数字 text参数(x轴,y轴,显示的内容,
#折线图添加数字 text参数(x轴,y轴,显示的内容),
maxy=max(y)
for a, b in zip(x, y):
if(b==maxy):
plt.text(a,b