aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
56c3d38 verified
raw
history blame contribute delete
178 Bytes
import gradio as gr
from data import df
with gr.Blocks() as demo:
gr.BarPlot(df, x="ethnicity", y="height", y_aggregate="mean")
if __name__ == "__main__":
demo.launch()