Kelas commited on
Commit
bfd8420
1 Parent(s): 0215678

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -24,10 +24,8 @@ unique_QAudio2 = unique_values["QAudio2"]
24
  unique_QAudio3 = unique_values["QAudio3"]
25
  unique_Proxemics = unique_values["Proxemics"]
26
 
27
-
28
  def main():
29
  st.title("Non verbal tourists data")
30
-
31
  with st.form("questionaire"):
32
  sex = st.selectbox("Sex",options = unique_sex)
33
  age = st.slider("Age",min_value=20,max_values=90)
@@ -48,10 +46,7 @@ def main():
48
  QAudio1 = st.selectbox("Spitting Indifferent",options = unique_QAudio1)
49
  QAudio2 = st.selectbox("Hum Indifferent",options = unique_QAudio1)
50
  QAudio3 = st.selectbox("Sigh Indifferent",options = unique_QAudio1)
51
- Proxemics = st.selectbox("Physical distance preferred for the client : A. intimate: 15cm-45cm; B. per-sonal: 46cm-122cm; C. social:123cm-360cm; D. public: > 360cm",options = unique_Proxemics)
52
-
53
-
54
-
55
  # clicked==True only when the button is clicked
56
  clicked = st.form_submit_button("Predict Type of Client")
57
  if clicked:
 
24
  unique_QAudio3 = unique_values["QAudio3"]
25
  unique_Proxemics = unique_values["Proxemics"]
26
 
 
27
  def main():
28
  st.title("Non verbal tourists data")
 
29
  with st.form("questionaire"):
30
  sex = st.selectbox("Sex",options = unique_sex)
31
  age = st.slider("Age",min_value=20,max_values=90)
 
46
  QAudio1 = st.selectbox("Spitting Indifferent",options = unique_QAudio1)
47
  QAudio2 = st.selectbox("Hum Indifferent",options = unique_QAudio1)
48
  QAudio3 = st.selectbox("Sigh Indifferent",options = unique_QAudio1)
49
+ Proxemics = st.selectbox("Physical distance preferred for the client",options = unique_Proxemics)
 
 
 
50
  # clicked==True only when the button is clicked
51
  clicked = st.form_submit_button("Predict Type of Client")
52
  if clicked: