Extract dataframe from linked selection

Maybe take a look at this notebook here

Ie this part:

table = (
     filtered_subrange.pipe(ls.filter, selection_expr=ls.param.selection_expr)
    .drop(columns=['easting', 'northing'])
    .pipe(pn.widgets.Tabulator, pagination='remote', page_size=15)
)

table

and take a look at phillips excellect presentation linked in marcs nice writeup here Hvplot .interactive - A truly amazing api for making interactive data exploration and data apps from Pandas DataFrames

1 Like