Kolpitor commited on
Commit
0039660
·
1 Parent(s): ff74936

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -13
app.py CHANGED
@@ -21,14 +21,12 @@ merge = st.checkbox("Merge US country with State ?")
21
 
22
  all_region = st.checkbox("Take all Region ?", value=True)
23
  all_country = st.checkbox("Take all Country ?", value=True)
24
-
25
- if merge == False:
26
- all_state = st.checkbox("Take all State ?", value=True)
27
-
28
  all_city = st.checkbox("Take all City ?", value=True)
29
 
30
  df = pd.read_csv("city_temperature.csv")
31
 
 
 
32
  if all_region == False:
33
  region = st.selectbox(
34
  'Which region do you want to predict temparature ?',
@@ -36,22 +34,25 @@ if all_region == False:
36
  df.drop(df.loc[df['Region'] != region].index, inplace=True)
37
 
38
  if all_country == False:
39
- region = st.selectbox(
40
  'Which country do you want to predict temparature ?',
41
  (df["Country"].unique()), index=0)
42
- df.drop(df.loc[df['Country'] != region].index, inplace=True)
43
 
44
- if merge == False and all_state == False:
45
- state = st.selectbox(
46
- 'Which state do you want to predict temparature ?',
47
- (df["State"].unique()), index=0)
48
- df.drop(df.loc[df['State'] != region].index, inplace=True)
 
 
 
49
 
50
  if all_city == False:
51
- region = st.selectbox(
52
  'Which city do you want to predict temparature ?',
53
  (df["City"].unique()), index=0)
54
- df.drop(df.loc[df['City'] != region].index, inplace=True)
55
 
56
 
57
 
 
21
 
22
  all_region = st.checkbox("Take all Region ?", value=True)
23
  all_country = st.checkbox("Take all Country ?", value=True)
 
 
 
 
24
  all_city = st.checkbox("Take all City ?", value=True)
25
 
26
  df = pd.read_csv("city_temperature.csv")
27
 
28
+ country = "all"
29
+
30
  if all_region == False:
31
  region = st.selectbox(
32
  'Which region do you want to predict temparature ?',
 
34
  df.drop(df.loc[df['Region'] != region].index, inplace=True)
35
 
36
  if all_country == False:
37
+ country = st.selectbox(
38
  'Which country do you want to predict temparature ?',
39
  (df["Country"].unique()), index=0)
40
+ df.drop(df.loc[df['Country'] != country].index, inplace=True)
41
 
42
+ if merge == False and country == "US":
43
+ all_state = st.checkbox("Take all State ?", value=True)
44
+
45
+ if all_state == False:
46
+ state = st.selectbox(
47
+ 'Which state do you want to predict temparature ?',
48
+ (df["State"].unique()), index=0)
49
+ df.drop(df.loc[df['State'] != state].index, inplace=True)
50
 
51
  if all_city == False:
52
+ city = st.selectbox(
53
  'Which city do you want to predict temparature ?',
54
  (df["City"].unique()), index=0)
55
+ df.drop(df.loc[df['City'] != city].index, inplace=True)
56
 
57
 
58