d91d5cf 2ddbbb9 d91d5cf 2ddbbb9
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st import pandas as pd import numpy as np st.write("hello welcome to deep learning") chart_data = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"]) st.area_chart(chart_data)