Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -51,6 +51,11 @@ if page == "Patient Information":
|
|
51 |
|
52 |
has_brain_mets = st.checkbox("Brain Metastases (Brain Mets)")
|
53 |
brain_mets_primary_cancer = st.selectbox("Primary Cancer", ["Breast", "Lung", "Melanoma", "Colon", "Kidney", "Prostate", "Other"]) if has_brain_mets else None
|
|
|
|
|
|
|
|
|
|
|
54 |
stage = st.selectbox("Stage of Cancer", ["I", "II", "III", "IV"])
|
55 |
separation = st.number_input("Separation (cm)")
|
56 |
machine = st.selectbox("Machine", ["Co-60", "LINAC", "Teletherapy"])
|
|
|
51 |
|
52 |
has_brain_mets = st.checkbox("Brain Metastases (Brain Mets)")
|
53 |
brain_mets_primary_cancer = st.selectbox("Primary Cancer", ["Breast", "Lung", "Melanoma", "Colon", "Kidney", "Prostate", "Other"]) if has_brain_mets else None
|
54 |
+
brain_mets_regions = st.multiselect("Affected Brain Regions", [
|
55 |
+
"Frontal Lobe", "Parietal Lobe", "Temporal Lobe", "Occipital Lobe",
|
56 |
+
"Cerebellum", "Brainstem", "Multiple Regions", "Meninges (Leptomeningeal Spread)"
|
57 |
+
])
|
58 |
+
|
59 |
stage = st.selectbox("Stage of Cancer", ["I", "II", "III", "IV"])
|
60 |
separation = st.number_input("Separation (cm)")
|
61 |
machine = st.selectbox("Machine", ["Co-60", "LINAC", "Teletherapy"])
|