Update app.py
Browse files
app.py
CHANGED
@@ -88,7 +88,12 @@ def main():
|
|
88 |
st.title("BMD and T-score Prediction Tool")
|
89 |
|
90 |
# Input patient data
|
91 |
-
bmd_patient = st.number_input(
|
|
|
|
|
|
|
|
|
|
|
92 |
site_options = ['FN', 'TH', 'LS']
|
93 |
site = st.selectbox("Select Region (Site)", site_options)
|
94 |
|
|
|
88 |
st.title("BMD and T-score Prediction Tool")
|
89 |
|
90 |
# Input patient data
|
91 |
+
bmd_patient = st.number_input(
|
92 |
+
"Initial BMD",
|
93 |
+
min_value=0.000, max_value=2.000,
|
94 |
+
value=0.800, step=0.001,
|
95 |
+
format="%.3f"
|
96 |
+
)
|
97 |
site_options = ['FN', 'TH', 'LS']
|
98 |
site = st.selectbox("Select Region (Site)", site_options)
|
99 |
|