Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
plot_guide_aggregate_nominal_main
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fa0aa6b
plot_guide_aggregate_nominal_main
/
run.py
aliabd
Upload folder using huggingface_hub
7fdd1be
verified
over 1 year ago
raw
Copy download link
history
blame
178 Bytes
import
gradio
as
gr
from
data
import
df
with
gr.Blocks()
as
demo:
gr.BarPlot(df, x=
"ethnicity"
, y=
"height"
, y_aggregate=
"mean"
)
if
__name__ ==
"__main__"
:
demo.launch()