mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-23 11:39:17 +08:00
8 lines
172 B
Python
8 lines
172 B
Python
|
import gradio as gr
|
||
|
from data import df
|
||
|
|
||
|
with gr.Blocks() as demo:
|
||
|
gr.ScatterPlot(df, x="weight", y="height", color="age")
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
demo.launch()
|