corvo7 commited on
Commit
c3edf8b
·
verified ·
1 Parent(s): de5aa30

Update app.py

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