Update app.py
Browse files
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)
|