aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
dc40d5e verified
raw
history blame contribute delete
162 Bytes
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()