Visualize dataframe in an interactive data table
You can use the following code snippet to create a Persist-enabled interactive data table.
from vega_datasets import data # Load vega_datasets
import persist_ext as PR # Load Persist Extension
cars_df = data.cars() # Get the cars dataset as Pandas dataframe
PR.PersistTable(cars_df) # Display cars dataset with interactive table