Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yaleh
/
meta-prompt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0e80df8
meta-prompt
/
solara_editable_dataframe_demo.py
yaleh
Updated UI.
8274eff
7 months ago
raw
Copy download link
history
blame
Safe
206 Bytes
import
solara
import
pandas
as
pd
import
plotly
df = plotly.data.iris()
@solara.component
def
Page
():
solara.DataFrame(df, items_per_page=
5
)
# Run the Solara app
if
__name__ ==
"__main__"
:
Page()