corvo7 commited on
Commit
2ddbbb9
1 Parent(s): d91d5cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
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)