File size: 178 Bytes
dc40d5e
36d2963
dc40d5e
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr
from data import df  # type: ignore

with gr.Blocks() as demo:
    gr.ScatterPlot(df, x="ethnicity", y="height")

if __name__ == "__main__":
    demo.launch()