Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,17 +4,18 @@ import numpy as np
|
|
4 |
#st.makrdown( :smile:)
|
5 |
#[theme]
|
6 |
base="dark"
|
|
|
7 |
primaryColor="purple"
|
8 |
# this is a comment line
|
9 |
st.title("Project Name : AI Driven UI\n")
|
10 |
st.subheader("Exercise # 1: Maps 🕵️♀️ " )
|
11 |
st.write(" This app shows top 10 states with the most Covid-19 cases per 100,000 residents in all time ")
|
12 |
|
13 |
-
st.subheader("Map")
|
14 |
|
15 |
##df= pd.read_excel('./Users/mmaqsood/Desktop/CovidStates-Mehak.xlsx' )
|
16 |
##dataframe({data, lat, lon})
|
17 |
-
Cstates=pd.DataFrame({'Name of States': ['Alaska', 'Rodhe Island', 'Guam','North Dakota','Kentucky','Tennessee','Florida','West Virginia','South Carolina', 'Utah'],
|
18 |
'lat' :[66.160507, 41.742325 ,13.444304 , 47.650589 , 37.839333, 36.174465 ,25.761681 , 39.000000 ,33.836082 , 39.419220],
|
19 |
'lon' :[-153.369141, -71.742332 , 144.793732 , -100.437012 , -84.270020, -86.767960, -80.191788 , -80.500000, -81.163727, -111.950684]
|
20 |
})
|
|
|
4 |
#st.makrdown( :smile:)
|
5 |
#[theme]
|
6 |
base="dark"
|
7 |
+
backgroundColor="FFFFFF"
|
8 |
primaryColor="purple"
|
9 |
# this is a comment line
|
10 |
st.title("Project Name : AI Driven UI\n")
|
11 |
st.subheader("Exercise # 1: Maps 🕵️♀️ " )
|
12 |
st.write(" This app shows top 10 states with the most Covid-19 cases per 100,000 residents in all time ")
|
13 |
|
14 |
+
#st.subheader(" World Map")
|
15 |
|
16 |
##df= pd.read_excel('./Users/mmaqsood/Desktop/CovidStates-Mehak.xlsx' )
|
17 |
##dataframe({data, lat, lon})
|
18 |
+
Cstates=pd.DataFrame({'Name of the States': ['Alaska', 'Rodhe Island', 'Guam','North Dakota','Kentucky','Tennessee','Florida','West Virginia','South Carolina', 'Utah'],
|
19 |
'lat' :[66.160507, 41.742325 ,13.444304 , 47.650589 , 37.839333, 36.174465 ,25.761681 , 39.000000 ,33.836082 , 39.419220],
|
20 |
'lon' :[-153.369141, -71.742332 , 144.793732 , -100.437012 , -84.270020, -86.767960, -80.191788 , -80.500000, -81.163727, -111.950684]
|
21 |
})
|