Skip to content

Commit

Permalink
Updated streamlit_community_cloud_app.py
Browse files Browse the repository at this point in the history
Updated image resolution
  • Loading branch information
JohnPaulinePineda authored Nov 11, 2024
1 parent 0d3b4c8 commit 8885e06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uis/streamlit_community_cloud_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
# using Kaplan-Meier Plots
# against the training data characteristics
##################################
fig, axes = plt.subplots(3, 2, figsize=(17, 13), dpi=300)
fig, axes = plt.subplots(3, 2, figsize=(17, 13), dpi=1000)

heart_failure_predictors = ['AGE','EJECTION_FRACTION','SERUM_CREATININE','SERUM_SODIUM','ANAEMIA','HIGH_BLOOD_PRESSURE']

Expand Down Expand Up @@ -242,7 +242,7 @@
# for plotting the estimated survival probability profile
# of the final survival prediction model
##################################
fig, ax = plt.subplots(figsize=(17, 8), dpi=300)
fig, ax = plt.subplots(figsize=(17, 8), dpi=1000)

for i, surv_func in enumerate(X_train_survival_function):
ax.step(surv_func.x,
Expand Down

0 comments on commit 8885e06

Please sign in to comment.