streamlit-component-gallery / pages /charts.area_chart.py
whitphx's picture
whitphx HF staff
Copy https://github.com/whitphx/stlite/tree/main/packages/sharing-editor/public/samples/011_component_gallery
dd0ef30
raw history blame
No virus
240 Bytes
import streamlit as st
import pandas as pd
import numpy as np
@st.experimental_memo
def load_data():
df = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"])
return df
chart_data = load_data()
st.area_chart(chart_data)