Closed MarcSkovMadsen closed 1 week ago
POC for polars dataframe working
import polars as pl
import panel as pn
from panel_gwalker import GraphicWalker
pn.extension(sizing_mode="stretch_width")
df = pl.read_csv(
"https://datasets.holoviz.org/windturbines/v1/windturbines.csv.gz", n_rows=10000
)
GraphicWalker(df).servable()
Next step is to convert to narwhals.
There is now support for multiple backends via narwhals
.
This also illustrates what it takes to support multiple tabular backends in param, panel and bokeh @philippjfr.
This one is ready for review.
I will create a new branch from this one. Trying to get duckdb relation and pygwalker Connector working.
There are some issues on current main branch when testing pycafe. will fix in this one also.
Ok. I fixed the issues except https://github.com/panel-extensions/panel-graphic-walker/issues/36.
Ignore me, I see it's a pygwalker dependency.
Continues from #32. So review that one first.
Just wanted to get this started.
Feel free to contribute or run with it.