freddyaboulton's picture
Upload folder using huggingface_hub
5f538fd verified
import gradio as gr
from data import df # type: ignore
with gr.Blocks() as demo:
gr.BarPlot(df, x="weight", y="height", x_bin=10, y_aggregate="sum")
if __name__ == "__main__":
demo.launch()