Skip to content

Instantly share code, notes, and snippets.

View kuatroka's full-sized avatar

kuatroka kuatroka

View GitHub Profile
@kuatroka
kuatroka / holoviz_table_chart_filter.py
Last active December 17, 2024 00:23
holoviz + panel + hvplot - chart, table and brush selection on both
# Fully working hvplot data cleaning tool
import panel as pn
import pandas as pd
import holoviews as hv
pn.extension('tabulator', template='material', sizing_mode='stretch_width')
import hvplot.pandas # noqa
hvplot.extension('bokeh')
pd.options.display.float_format = '{:.0f}'.format
common_df_pd = common_df.to_pandas()