mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
8 lines
162 B
Python
8 lines
162 B
Python
|
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()
|