Update prediction.py
Browse files- .gitignore +5 -0
- __pycache__/eda.cpython-310.pyc +0 -0
- __pycache__/prediction.cpython-310.pyc +0 -0
- packages.txt +1 -0
- prediction.py +6 -1
.gitignore
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ignore dashboard kit #
|
| 2 |
+
|
| 3 |
+
packages.txt
|
| 4 |
+
streamlit_app.py
|
| 5 |
+
hospital.jpg
|
__pycache__/eda.cpython-310.pyc
ADDED
|
Binary file (3.36 kB). View file
|
|
|
__pycache__/prediction.cpython-310.pyc
ADDED
|
Binary file (2.74 kB). View file
|
|
|
packages.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
|
prediction.py
CHANGED
|
@@ -64,7 +64,12 @@ def run():
|
|
| 64 |
"Serum Sodium", min_value=0, max_value=200, value=134, help="mEq/L"
|
| 65 |
)
|
| 66 |
sc = col1.number_input(
|
| 67 |
-
"Serum Creatinine",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
)
|
| 69 |
time = col2.number_input(
|
| 70 |
"Follow-Up Period", min_value=0, max_value=1000, value=20, help="days"
|
|
|
|
| 64 |
"Serum Sodium", min_value=0, max_value=200, value=134, help="mEq/L"
|
| 65 |
)
|
| 66 |
sc = col1.number_input(
|
| 67 |
+
"Serum Creatinine",
|
| 68 |
+
min_value=0,
|
| 69 |
+
max_value=100,
|
| 70 |
+
value=1.75,
|
| 71 |
+
step=1e-3,
|
| 72 |
+
help="mg/dL",
|
| 73 |
)
|
| 74 |
time = col2.number_input(
|
| 75 |
"Follow-Up Period", min_value=0, max_value=1000, value=20, help="days"
|