Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
plot_guide_scatter_nominal_main
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cf2496c
plot_guide_scatter_nominal_main
/
run.py
aliabd
HF Staff
Upload folder using huggingface_hub
859eaa1
verified
11 months ago
raw
Copy download link
history
blame
Safe
162 Bytes
import
gradio
as
gr
from
data
import
df
with
gr.Blocks()
as
demo:
gr.ScatterPlot(df, x=
"ethnicity"
, y=
"height"
)
if
__name__ ==
"__main__"
:
demo.launch()