Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,11 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
2 |
|
3 |
st.write("hello welcome to deep learning")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
+
import numpy as np
|
4 |
|
5 |
st.write("hello welcome to deep learning")
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
chart_data = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"])
|
10 |
+
|
11 |
+
st.area_chart(chart_data)
|