Skip to content

Commit 192db0d

Browse files
westurnermroeschke
andauthored
DOC: ecosystem.md: add pygwalker, add seaborn code example (#57990)
* DOC: ecosystem.md: add pygwalker, add seaborn code example * DOC,CLN: ecosystem.md: remove EOL spaces Co-authored-by: Matthew Roeschke <[email protected]> --------- Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 9119aaf commit 192db0d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

web/pandas/community/ecosystem.md

+19
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,20 @@ pd.set_option("plotting.backend", "pandas_bokeh")
8282
It is very similar to the matplotlib plotting backend, but provides
8383
interactive web-based charts and maps.
8484

85+
### [pygwalker](https://github.com/Kanaries/pygwalker)
86+
87+
PyGWalker is an interactive data visualization and
88+
exploratory data analysis tool built upon Graphic Walker
89+
with support for visualization, cleaning, and annotation workflows.
90+
91+
pygwalker can save interactively created charts
92+
to Graphic-Walker and Vega-Lite JSON.
93+
94+
```
95+
import pygwalker as pyg
96+
pyg.walk(df)
97+
```
98+
8599
### [seaborn](https://seaborn.pydata.org)
86100

87101
Seaborn is a Python visualization library based on
@@ -94,6 +108,11 @@ pandas with the option to perform statistical estimation while plotting,
94108
aggregating across observations and visualizing the fit of statistical
95109
models to emphasize patterns in a dataset.
96110

111+
```
112+
import seaborn as sns
113+
sns.set_theme()
114+
```
115+
97116
### [plotnine](https://github.com/has2k1/plotnine/)
98117

99118
Hadley Wickham's [ggplot2](https://ggplot2.tidyverse.org/) is a

0 commit comments

Comments
 (0)