龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2024-1-8 11:30

【Python工具包/库推荐系列】- PandasGUI

[img]http://p.algo2.net/2024/0108/11039b7c65fce.png[/img]

学习Python数据分析,有2个工具包一定会被用到,分别是numpy和pandas。

pandas可以说是Python数据分析中的神器,它可以在Python语言中实现很多SQL语句的功能。而且,还具备很多数据清洗和处理的附加功能。

但是,对比于很多数据库工具,它有一点不好的地方就是,它在可视化方面做的很差。

而PandasGUI的出现,让我大为经验,它能够直接把pandas的DataFrames进行可视化,让我们数据分析过程中对数据有一个更加清晰的认知。

安装[code]$ pip install pandasgui[/code]或[code]$ pip install git+https://github.com/adamerose/pandasgui.git[/code]用法

首先,创建一个简单的DataFrames:[code]import pandas as pd
from pandasgui import show
df = pd.DataFrame(([[1, 2, 3], [4, 5, 6], [7, 8, 9]]), columns=['a', 'b', 'c'])
show(df)
[/code]如果你将代码作为脚本而不是在IPython或Jupyter中运行,则需要这样做:[code]show(df, settings={'block': True})[/code]

页: [1]