YenJung commited on
Commit
98a3ff5
·
1 Parent(s): 6e1a342

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -35,4 +35,9 @@ st.balloons()
35
  st.progress(10)
36
  with st.spinner('Wait for it...'):
37
  time.sleep(10)
38
-
 
 
 
 
 
 
35
  st.progress(10)
36
  with st.spinner('Wait for it...'):
37
  time.sleep(10)
38
+
39
+
40
+ import pandas as pd
41
+ import numpy as np
42
+ df= pd.DataFrame(np.random.randn(10, 2), columns=['x', 'y'])
43
+ st.line_chart(df)