corvo7 commited on
Commit
e42c4b6
·
verified ·
1 Parent(s): 9828c55

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -9,3 +9,7 @@ sibsp=st.selectbox("sibsp",[0, 1, 2, 4, 3, 5, 8])
9
  parch=st.selectbox("parch",[0, 1, 2, 5, 4, 3, 6])
10
  fare=st.slider("fare", min_value=0, max_value=1000)
11
  embarked=st.selectbox("embarked",["S","C","Q"])
 
 
 
 
 
9
  parch=st.selectbox("parch",[0, 1, 2, 5, 4, 3, 6])
10
  fare=st.slider("fare", min_value=0, max_value=1000)
11
  embarked=st.selectbox("embarked",["S","C","Q"])
12
+
13
+ inputss=pd.DataFrame(np.array([[pclass, sex, age, sibsp, parch, fare, embarked]]),columns=['pclass', 'sex', 'age', 'sibsp', 'parch', 'fare', 'embarked'])
14
+
15
+