Spaces:
Runtime error
Runtime error
Commit ·
501f1f6
1
Parent(s): 5e1350e
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,14 +23,14 @@ st.title('Resistant')
|
|
| 23 |
st.title(':blue[Urine test]:')
|
| 24 |
|
| 25 |
|
| 26 |
-
Age = st.number_input("Age")
|
| 27 |
options = ["Male", "Female"]
|
| 28 |
selectbox_selection = st.selectbox("Select Gender", options)
|
| 29 |
#st.write(f"Gender selected is {selectbox_selection}")
|
| 30 |
-
Fever = st.number_input("Fever")
|
| 31 |
options1 = ["Yes", "No"]
|
| 32 |
selectbox_selection = st.selectbox("Bone_merrow_transplantation", options1)
|
| 33 |
-
HB = st.number_input("HB")
|
| 34 |
platet = st.number_input("platet")
|
| 35 |
CRP= st.number_input("CRP")
|
| 36 |
Procalictonin =st.number_input("Procalictonin")
|
|
|
|
| 23 |
st.title(':blue[Urine test]:')
|
| 24 |
|
| 25 |
|
| 26 |
+
Age = st.number_input("Age",min_value=1, max_value=100)
|
| 27 |
options = ["Male", "Female"]
|
| 28 |
selectbox_selection = st.selectbox("Select Gender", options)
|
| 29 |
#st.write(f"Gender selected is {selectbox_selection}")
|
| 30 |
+
Fever = st.number_input("Fever",min_value=98, max_value=104)
|
| 31 |
options1 = ["Yes", "No"]
|
| 32 |
selectbox_selection = st.selectbox("Bone_merrow_transplantation", options1)
|
| 33 |
+
HB = st.number_input("HB",min_value=1, max_value=20)
|
| 34 |
platet = st.number_input("platet")
|
| 35 |
CRP= st.number_input("CRP")
|
| 36 |
Procalictonin =st.number_input("Procalictonin")
|