aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
6b46020 verified
raw
history blame contribute delete
172 Bytes
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()