Update app.py
Browse files
app.py
CHANGED
@@ -46,7 +46,7 @@ def main():
|
|
46 |
race = st.selectbox('race',options=unique_race)
|
47 |
sex = st.selectbox('sex',options=unique_sex)
|
48 |
hours_per_week = st.slider('hours_per_week',min_value=1,max_value=100)
|
49 |
-
native_country = st.selectbox('country',options=
|
50 |
|
51 |
# clicked==True only when the button is clicked
|
52 |
clicked = st.form_submit_button("Predict income")
|
|
|
46 |
race = st.selectbox('race',options=unique_race)
|
47 |
sex = st.selectbox('sex',options=unique_sex)
|
48 |
hours_per_week = st.slider('hours_per_week',min_value=1,max_value=100)
|
49 |
+
native_country = st.selectbox('country',options=unique_country)
|
50 |
|
51 |
# clicked==True only when the button is clicked
|
52 |
clicked = st.form_submit_button("Predict income")
|