Spaces:
Runtime error
Runtime error
File size: 358 Bytes
9c1ffe9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import numpy as np
import pandas as pd
import streamlit as st
@st.cache_data
def load_data():
df = pd.DataFrame(
np.random.randn(20, 3),
columns = ['col1', 'col2', 'col3'])
return df
chart_data = load_data()
st.area_chart(
chart_data,
x = 'col1',
y = ['col2', 'col3'],
color = ['#FF0000', '#0000FF'] # Optional
)
|