matplotlib 可视化

这篇博客介绍了三种数据可视化工具:matplotlib, echarts 和 plotly。matplotlib 提供静态图表;echarts 是基于 JSON 的交互式图表库,适合嵌入到 Python 中;而 plotly 则提供了 Python 接口,支持交互式图表创建。通过这些链接,读者可以探索各种示例并选择适合自己的可视化方案。" 2696039,85986,外键索引的重要性:案例分析,"['数据库优化', 'SQL', '数据库设计', '索引', '关系数据库']
摘要由CSDN通过智能技术生成

以下都是可视化链接
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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值