corvo7 commited on
Commit
9cf2737
·
verified ·
1 Parent(s): 3e2aa13

Update pages/Intro to Data Analysis.py

Browse files
Files changed (1) hide show
  1. pages/Intro to Data Analysis.py +7 -3
pages/Intro to Data Analysis.py CHANGED
@@ -1,6 +1,10 @@
1
  import streamlit as st
2
 
3
 
4
- st.write("welcome to stats")
5
- st.write("welcome to stats")
6
- st.write("welcome to stats")
 
 
 
 
 
1
  import streamlit as st
2
 
3
 
4
+ def fun():
5
+
6
+ for z in range(1,10):
7
+ yield z
8
+
9
+ if st.button("Stream data"):
10
+ st.write_stream(fun)