pntables renders pandas DataFrames as interactive tables using the Tabulator component in Panel directly in Jupyter notebooks. It automatically integrates with pandas, so DataFrames display interactively with no extra setup.
- Make pagination responsive to slider widget
- Automatic conversion of DataFrames to interactive tables.
pip install pntablesJust import pntables and use pandas as you would.
import pandas as pd
import pntables
df = pd.DataFrame({
'Sample': ['A', 'B', 'C'],
'Score': [25, 30, 35],
'Location': ['San Diego', 'Berlin', 'Seattle']
})
dfLicensed under the BSD 3-Clause License. See LICENSE for details.