Python实现Matplotlib,Seaborn动态数据图


Posted in Python onMay 06, 2022

Matplotlib

效果图如下

Python实现Matplotlib,Seaborn动态数据图

主要使用matplotlib.animation.FuncAnimation,上核心代码,

# 定义静态绘图函数
def draw_barchart(year):
    dff = df[df['year'].eq(year)].sort_values(by='value',
                                              ascending=True).tail(10)
    ax.clear()
    ax.barh(dff['name'],
            dff['value'],
            color=[colors[group_lk[x]] for x in dff['name']])
    dx = dff['value'].max() / 200
    for i, (value, name) in enumerate(zip(dff['value'], dff['name'])):
        ax.text(value - dx,
                i,
                name,
                size=14,
                weight=600,
                ha='right',
                va='bottom')
        ax.text(value - dx,
                i - .25,
                group_lk[name],
                size=10,
                color='#444444',
                ha='right',
                va='baseline')
        ax.text(value + dx,
                i,
                f'{value:,.0f}',
                size=14,
                ha='left',
                va='center')
    # 注释文本
    ax.text(1,
            0.4,
            year,
            transform=ax.transAxes,
            color='#777777',
            size=46,
            ha='right',
            weight=800)
    ax.text(0,
            1.06,
            '单位 (每1000)',
            transform=ax.transAxes,
            size=12,
            color='#777777')
    ax.xaxis.set_major_formatter(ticker.StrMethodFormatter('{x:,.0f}'))
    ax.xaxis.set_ticks_position('top')
    ax.tick_params(axis='x', colors='#777777', labelsize=12)
    ax.set_yticks([])
    ax.margins(0, 0.01)
    ax.grid(which='major', axis='x', linestyle='-')
    ax.set_axisbelow(True)
    ax.text(0,
            1.12,
            '1500~2018年世界人口最多城市',
            transform=ax.transAxes,
            size=24,
            weight=600,
            ha='left')
    
    plt.box(False)


# 调用matplotlib.animation.FuncAnimation让静态图动起来
animator = animation.FuncAnimation(fig,
                                   draw_barchart,
                                   frames=range(1968, 2019))
# Jupyter Notebook里展示动图animation
HTML(animator.to_jshtml())

在绘图数据部分改自己的数据既可为所欲为的使用了~

Seaborn

效果图如下

Python实现Matplotlib,Seaborn动态数据图

代码

import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
import seaborn as sns
import numpy as np
import palettable


def get_data(i=0):
    x, y = np.random.normal(loc=i, scale=3, size=(2, 260))
    return x, y
x, y = get_data()


g = sns.JointGrid(x=x, y=y, size=4)
g.fig.set_size_inches(10, 8)
lim = (-10, 10)


def prep_axes(g, xlim, ylim):
    g.ax_joint.clear()
    g.ax_joint.set_xlim(xlim)
    g.ax_joint.set_ylim(ylim)
    g.ax_marg_x.clear()
    g.ax_marg_x.set_xlim(xlim)
    g.ax_marg_y.clear()
    g.ax_marg_y.set_ylim(ylim)
    plt.setp(g.ax_marg_x.get_xticklabels(), visible=False)
    plt.setp(g.ax_marg_y.get_yticklabels(), visible=False)
    plt.setp(g.ax_marg_x.yaxis.get_majorticklines(), visible=False)
    plt.setp(g.ax_marg_x.yaxis.get_minorticklines(), visible=False)
    plt.setp(g.ax_marg_y.xaxis.get_majorticklines(), visible=False)
    plt.setp(g.ax_marg_y.xaxis.get_minorticklines(), visible=False)
    plt.setp(g.ax_marg_x.get_yticklabels(), visible=False)
    plt.setp(g.ax_marg_y.get_xticklabels(), visible=False)


def animate(i):
    g.x, g.y = get_data(i)
    prep_axes(g, lim, lim)
    g.plot_joint(sns.kdeplot,
                 cmap='Paired')
    g.plot_marginals(sns.kdeplot, color='blue', shade=True)


frames = np.sin(np.linspace(0, 2 * np.pi, 17)) * 5
ani = matplotlib.animation.FuncAnimation(g.fig,
                                         animate,
                                         frames=frames,
                                         repeat=True)
HTML(ani.to_jshtml())

和Matplotlib代码类似,不过多解释。

到此这篇关于Python实现Matplotlib,Seaborn动态数据图的文章就介绍到这了!


Tags in this post...

Python 相关文章推荐
Python天气预报采集器实现代码(网页爬虫)
Oct 07 Python
python原始套接字编程示例分享
Feb 21 Python
Python下线程之间的共享和释放示例
May 04 Python
Python编程入门的一些基本知识
May 13 Python
利用python实现命令行有道词典的方法示例
Jan 31 Python
python命令行解析之parse_known_args()函数和parse_args()使用区别介绍
Jan 24 Python
python批量实现Word文件转换为PDF文件
Mar 15 Python
Python中的并发处理之asyncio包使用的详解
Apr 03 Python
selenium在执行phantomjs的API并获取执行结果的方法
Dec 17 Python
python搜索包的路径的实现方法
Jul 19 Python
python 设置xlabel,ylabel 坐标轴字体大小,字体类型
Jul 23 Python
python boto和boto3操作bucket的示例
Oct 30 Python
PYTHON InceptionV3模型的复现详解
代码复现python目标检测yolo3详解预测
讲解Python实例练习逆序输出字符串
May 06 #Python
python turtle绘图
May 04 #Python
python blinker 信号库
May 04 #Python
python三子棋游戏
May 04 #Python
python神经网络 使用Keras构建RNN训练
May 04 #Python
You might like
雄兵连三大错觉:凯莎没了,凉冰阵亡了,华烨觉得自己又行了
2020/04/09 国漫
PHP的中问验证码
2006/11/25 PHP
CI框架Session.php源码分析
2014/11/03 PHP
6个超实用的PHP代码片段
2015/08/10 PHP
你不知道的文件上传漏洞php代码分析
2016/09/29 PHP
PHP将数据导出Excel表中的实例(投机型)
2017/07/31 PHP
用 JSON 处理缓存
2007/04/27 Javascript
Mootools 1.2教程 事件处理
2009/09/15 Javascript
IE和firefox浏览器的event事件兼容性汇总
2009/12/06 Javascript
jquery队列queue与原生模仿其实现方法分享
2014/03/25 Javascript
原生javascript+css3编写的3D魔方动画旋扭特效
2016/03/14 Javascript
jQuery实现布局高宽自适应的简单实例
2016/05/28 Javascript
jQuery简单实现遍历单选框的方法
2017/03/06 Javascript
vue.js从安装到搭建过程详解
2017/03/17 Javascript
jquery DataTable实现前后台动态分页
2017/06/17 jQuery
Easyui在treegrid添加控件的实现方法
2017/06/23 Javascript
微信小程序中setInterval的使用方法
2017/09/29 Javascript
vue实现tab切换外加样式切换方法
2018/03/16 Javascript
Python 多核并行计算的示例代码
2017/11/07 Python
对Tensorflow中权值和feature map的可视化详解
2018/06/14 Python
对python中数组的del,remove,pop区别详解
2018/11/07 Python
豆腐の盛田屋官网:日本自然派的豆乳面膜、肥皂、化妆水、乳液等
2016/10/08 全球购物
皮姆斯勒语言学习:Pimsleur Language Programs
2018/06/30 全球购物
意大利比基尼品牌:MISS BIKINI
2019/11/02 全球购物
数据库专业英语
2012/11/30 面试题
工厂厂长岗位职责
2013/11/08 职场文书
酒店副总岗位职责
2013/12/24 职场文书
教学个人的自我评价分享
2014/02/16 职场文书
家长会欢迎标语
2014/06/24 职场文书
人力资源管理专业自荐信
2014/06/24 职场文书
2014年应急管理工作总结
2014/11/26 职场文书
唐山大地震的观后感
2015/06/05 职场文书
教师师德工作总结2015
2015/07/22 职场文书
投资入股协议书
2016/03/22 职场文书
创业项目大全(适合在家创业的项目)
2019/08/15 职场文书
MySQL中datetime时间字段的四舍五入操作
2021/10/05 MySQL