rasmodev commited on
Commit
7030063
·
verified ·
1 Parent(s): 191877f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -54,6 +54,9 @@ def main():
54
  years_since_last_promotion = st.number_input("Years Since Last Promotion")
55
  years_with_curr_manager = st.number_input("Years With Current Manager")
56
 
 
 
 
57
  # Create a DataFrame to hold the user input data
58
  input_data = pd.DataFrame({
59
  'Age': [age],
 
54
  years_since_last_promotion = st.number_input("Years Since Last Promotion")
55
  years_with_curr_manager = st.number_input("Years With Current Manager")
56
 
57
+ # Convert Monthly Income to string
58
+ monthly_income = str(monthly_income)
59
+
60
  # Create a DataFrame to hold the user input data
61
  input_data = pd.DataFrame({
62
  'Age': [age],