File size: 172 Bytes
6b46020 |
1 2 3 4 5 6 7 8 |
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() |
6b46020 |
1 2 3 4 5 6 7 8 |
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() |