YenJung commited on
Commit
65064a3
·
1 Parent(s): 707ea95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -1,9 +1,5 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
5
-
6
-
7
  st.title ("this is the app title")
8
  st.header("this is the markdown")
9
  st.markdown("this is the header")
@@ -41,4 +37,7 @@ with st.spinner('Wait for it...'):
41
  import pandas as pd
42
  import numpy as np
43
  df= pd.DataFrame(np.random.randn(10, 2), columns=['x', 'y'])
44
- st.line_chart(df)
 
 
 
 
1
  import streamlit as st
2
 
 
 
 
 
3
  st.title ("this is the app title")
4
  st.header("this is the markdown")
5
  st.markdown("this is the header")
 
37
  import pandas as pd
38
  import numpy as np
39
  df= pd.DataFrame(np.random.randn(10, 2), columns=['x', 'y'])
40
+ st.line_chart(df)
41
+
42
+ x = st.slider('Select a value')
43
+ st.write(x, 'squared is', x * x)