Update app.py
Browse files
app.py
CHANGED
@@ -127,8 +127,8 @@ def main():
|
|
127 |
site = st.selectbox("Select site", site_options)
|
128 |
|
129 |
# Input patient data
|
130 |
-
bmd_patient = st.number_input("Initial BMD", min_value=0.0, max_value=2.0, value=0.635, step=0.001)
|
131 |
-
tscore_patient = st.number_input("Initial T-score", min_value=-5.0, max_value=2.0, value=-2.5, step=0.01)
|
132 |
|
133 |
# Drug options
|
134 |
drug_options = ['Teriparatide', 'Teriparatide + Denosumab', 'Denosumab', 'Denosumab + Teriparatide',
|
|
|
127 |
site = st.selectbox("Select site", site_options)
|
128 |
|
129 |
# Input patient data
|
130 |
+
bmd_patient = st.number_input("Initial BMD", min_value=0.0, max_value=2.0, value=0.635, step=0.001, format="%.3f")
|
131 |
+
tscore_patient = st.number_input("Initial T-score", min_value=-5.0, max_value=2.0, value=-2.5, step=0.01, format="%.2f")
|
132 |
|
133 |
# Drug options
|
134 |
drug_options = ['Teriparatide', 'Teriparatide + Denosumab', 'Denosumab', 'Denosumab + Teriparatide',
|