# pygwalker **Repository Path**: defangit_zhaozhishi/pygwalker ## Basic Information - **Project Name**: pygwalker - **Description**: 一款python数据分析可视化资源库,简单好用,引用自Kanaries,无魔改 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2023-03-04 - **Last Updated**: 2024-04-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

PyGWalker: A Python Library for Exploratory Data Analysis with Visualization

PyPI version binder PyPI downloads conda-forge

discord invitation link Twitter Follow

[**PyGWalker**](https://github.com/Kanaries/pygwalker) can simplify your Jupyter Notebook data analysis and data visualization workflow, by turning your pandas dataframe (and polars dataframe) into a Tableau-style User Interface for visual exploration. **PyGWalker** (pronounced like "Pig Walker", just for fun) is named as an abbreviation of "**Py**thon binding of **G**raphic **Walker**". It integrates Jupyter Notebook (or other jupyter-based notebooks) with [Graphic Walker](https://github.com/Kanaries/graphic-walker), a different type of open-source alternative to Tableau. It allows data scientists to analyze data and visualize patterns with simple drag-and-drop operations. Visit [Google Colab](https://colab.research.google.com/drive/171QUQeq-uTLgSj1u-P9DQig7Md1kpXQ2?usp=sharing), [Kaggle Code](https://www.kaggle.com/asmdef/pygwalker-test), [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Kanaries/pygwalker/main?labpath=tests%2Fmain.ipynb) or [Graphic Walker Online Demo](https://graphic-walker.kanaries.net/) to test it out! > PyGWalker will add more support such as R in the future. # Getting Started ## Tested Environments - [x] Jupyter Notebook - [x] Google Colab - [x] Kaggle Code - [x] Jupyter Lab (WIP: There're still some tiny CSS issues) - [x] Databricks Notebook (Since version `0.1.4`) - [x] Jupyter Extension for Visual Studio Code (Since version `0.1.4`) - [x] Hex Projects (Since version `0.1.4`) - [x] Most web applications compatiable with IPython kernels. (Since version `0.1.4`) - [ ] ...feel free to raise an issue for more environments.
Run in Kaggle Run in Colab
Kaggle Code Google Colab
## Setup pygwalker Before using pygwalker, make sure to install the packages through the command line using pip or conda. ### pip ```bash pip install pygwalker ``` > **Note** > > For an early trial, you can install with `pip install pygwalker --upgrade` to keep your version up to date with the latest release or even `pip install git+https://github.com/Kanaries/pygwalker@main` to obtain latest features and bug-fixes. ### Conda-forge ```bash conda install -c conda-forge pygwalker ``` or ```bash mamba install -c conda-forge pygwalker ``` See [conda-forge feedstock](https://github.com/conda-forge/pygwalker-feedstock) for more help. ## Use pygwalker in Jupyter Notebook Import pygwalker and pandas to your Jupyter Notebook to get started. ```python import pandas as pd import pygwalker as pyg ``` You can use pygwalker without breaking your existing workflow. For example, you can call up Graphic Walker with the dataframe loaded in this way: ```python df = pd.read_csv('./bike_sharing_dc.csv', parse_dates=['date']) gwalker = pyg.walk(df) ``` And you can use pygwalker with polars (since `pygwalker>=0.1.4.7a0`): ```python import polars as pl df = pl.read_csv('./bike_sharing_dc.csv',try_parse_dates = True) gwalker = pyg.walk(df) ``` You can even try it online, simply visiting [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Kanaries/pygwalker/main?labpath=tests%2Fmain.ipynb), [Google Colab](https://colab.research.google.com/drive/171QUQeq-uTLgSj1u-P9DQig7Md1kpXQ2?usp=sharing) or [Kaggle Code](https://www.kaggle.com/code/asmdef/notebook1cc9d36936). ![](https://docs-us.oss-us-west-1.aliyuncs.com/img/pygwalker/travel-ani-0-light.gif) That's it. Now you have a Tableau-like user interface to analyze and visualize data by dragging and dropping variables. ![](https://docs-us.oss-us-west-1.aliyuncs.com/img/pygwalker/travel-ani-1-light.gif) Cool things you can do with Graphic Walker: + You can change the mark type into others to make different charts, for example, a line chart: ![graphic walker line chart](https://user-images.githubusercontent.com/8137814/221894699-b9623304-4eb1-4051-b29d-ca4a913fb7c7.png) + To compare different measures, you can create a concat view by adding more than one measure into rows/columns. ![graphic walker area chart](https://user-images.githubusercontent.com/8137814/221894334-16e5f674-1b81-4cc1-ad8a-3240950b51b7.png) + To make a facet view of several subviews divided by the value in dimension, put dimensions into rows or columns to make a facets view. The rules are similar to Tableau. ![graphic walker scatter chart](https://user-images.githubusercontent.com/8137814/221894480-b5ec5df2-d0bb-45bc-aa3d-6479920b6fe2.png) + You can view the data frame in a table and configure the analytic types and semantic types. ![page-data-view-light](https://user-images.githubusercontent.com/8137814/221895610-76165bc6-95ee-4567-a55b-41d47d3310eb.png) + You can save the data exploration result to a local file For more detailed instructions, visit the [Graphic Walker GitHub page](https://github.com/Kanaries/graphic-walker). # License [Apache License 2.0](https://github.com/Kanaries/pygwalker/blob/main/LICENSE) # Resources + Check out more resources about Graphic Walker on [Graphic Walker GitHub](https://github.com/Kanaries/graphic-walker) + We are also working on [RATH](https://kanaries.net): an Open Source, Automate exploratory data analysis software that redefines the workflow of data wrangling, exploration and visualization with AI-powered automation. Check out the [Kanaries website](https://kanaries.net) and [RATH GitHub](https://github.com/Kanaries/Rath) for more! + If you encounter any issues and need support, join our [Slack](https://join.slack.com/t/kanaries-community/shared_invite/zt-1pcosgbua-E_GBPawQOI79C41dPDyyvw) or [Discord](https://discord.gg/Z4ngFWXz2U) channels. + Share pygwalker on these social media platforms: [![Reddit](https://img.shields.io/badge/share%20on-reddit-red?style=flat-square&logo=reddit)](https://reddit.com/submit?url=https://github.com/Kanaries/pygwalker&title=Say%20Hello%20to%20pygwalker%3A%20Combining%20Jupyter%20Notebook%20with%20a%20Tableau-like%20UI) [![HackerNews](https://img.shields.io/badge/share%20on-hacker%20news-orange?style=flat-square&logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/Kanaries/pygwalker) [![Twitter](https://img.shields.io/badge/share%20on-twitter-03A9F4?style=flat-square&logo=twitter)](https://twitter.com/share?url=https://github.com/Kanaries/pygwalker&text=Say%20Hello%20to%20pygwalker%3A%20Combining%20Jupyter%20Notebook%20with%20a%20Tableau-like%20UI) [![Facebook](https://img.shields.io/badge/share%20on-facebook-1976D2?style=flat-square&logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/Kanaries/pygwalker) [![LinkedIn](https://img.shields.io/badge/share%20on-linkedin-3949AB?style=flat-square&logo=linkedin)](https://www.linkedin.com/shareArticle?url=https://github.com/Kanaries/pygwalker&&title=Say%20Hello%20to%20pygwalker%3A%20Combining%20Jupyter%20Notebook%20with%20a%20Tableau-like%20UI)