ldhldh commited on
Commit
2b49274
·
1 Parent(s): 9e83447

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+
5
+ chart_data = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"])
6
+
7
+ st.area_chart(chart_data)