Update app.py
Browse files
app.py
CHANGED
@@ -119,8 +119,8 @@ def main():
|
|
119 |
st.title("BMD and T-score Prediction Tool")
|
120 |
|
121 |
# Input patient data
|
122 |
-
bmd_patient = st.number_input("Initial BMD", min_value=0.0, max_value=2.0, value=0.
|
123 |
-
tscore_patient = st.number_input("Initial T-score", min_value=-
|
124 |
|
125 |
# Select drug
|
126 |
drug_options = ['Teriparatide', 'Teriparatide + Denosumab', 'Denosumab', 'Denosumab + Teriparatide',
|
|
|
119 |
st.title("BMD and T-score Prediction Tool")
|
120 |
|
121 |
# Input patient data
|
122 |
+
bmd_patient = st.number_input("Initial BMD", min_value=0.0, max_value=2.0, value=0.635, step=0.001)
|
123 |
+
tscore_patient = st.number_input("Initial T-score", min_value=-5.0, max_value=2.0, value=-2.5, step=0.01)
|
124 |
|
125 |
# Select drug
|
126 |
drug_options = ['Teriparatide', 'Teriparatide + Denosumab', 'Denosumab', 'Denosumab + Teriparatide',
|