From c60cf17c99cd86f94aee28657a4cfe66e5caf470 Mon Sep 17 00:00:00 2001 From: Wes Turner <50891+westurner@users.noreply.github.com> Date: Sun, 24 Mar 2024 22:11:17 -0400 Subject: [PATCH 1/2] DOC: ecosystem.md: add pygwalker, add seaborn code example --- web/pandas/community/ecosystem.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/web/pandas/community/ecosystem.md b/web/pandas/community/ecosystem.md index 715a2fafbe87a..c48acf73f1dfc 100644 --- a/web/pandas/community/ecosystem.md +++ b/web/pandas/community/ecosystem.md @@ -82,6 +82,20 @@ pd.set_option("plotting.backend", "pandas_bokeh") It is very similar to the matplotlib plotting backend, but provides interactive web-based charts and maps. +### [pygwalker](https://github.com/Kanaries/pygwalker) + +PyGWalker is an interactive data visualization and +exploratory data analysis tool built upon Graphic Walker +with support for visualization, cleaning, and annotation workflows. + +pygwalker can save interactively created charts +to Graphic-Walker and Vega-Lite JSON. + +``` +import pygwalker as pyg +pyg.walk(df) +``` + ### [seaborn](https://seaborn.pydata.org) Seaborn is a Python visualization library based on @@ -94,6 +108,11 @@ pandas with the option to perform statistical estimation while plotting, aggregating across observations and visualizing the fit of statistical models to emphasize patterns in a dataset. +``` +import seaborn as sns +sns.set_theme() +``` + ### [plotnine](https://github.com/has2k1/plotnine/) Hadley Wickham's [ggplot2](https://ggplot2.tidyverse.org/) is a From 60cd79cd2a8ab887bdde0926b3a9c6f49a03efa5 Mon Sep 17 00:00:00 2001 From: Wes Turner <50891+westurner@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:16:49 -0400 Subject: [PATCH 2/2] DOC,CLN: ecosystem.md: remove EOL spaces Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> --- web/pandas/community/ecosystem.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pandas/community/ecosystem.md b/web/pandas/community/ecosystem.md index c48acf73f1dfc..6cd67302b2a0e 100644 --- a/web/pandas/community/ecosystem.md +++ b/web/pandas/community/ecosystem.md @@ -84,8 +84,8 @@ interactive web-based charts and maps. ### [pygwalker](https://github.com/Kanaries/pygwalker) -PyGWalker is an interactive data visualization and -exploratory data analysis tool built upon Graphic Walker +PyGWalker is an interactive data visualization and +exploratory data analysis tool built upon Graphic Walker with support for visualization, cleaning, and annotation workflows. pygwalker can save interactively created charts