Skip to content

Commit

Permalink
Remove useless comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Zethson authored Dec 11, 2024
1 parent 0c7cd45 commit 785a2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ehrapy/plot/_survival_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def coxph_forestplot(
mini = round(((pd.to_numeric(data["coef lower 95%"])).min() - 0.1), 1) # setting x-axis minimum

fig = plt.figure(figsize=fig_size)
gspec = gridspec.GridSpec(1, 6) # sets up grid
gspec = gridspec.GridSpec(1, 6)
plot = plt.subplot(gspec[0, 0:4]) # plot of data
tabl = plt.subplot(gspec[0, 4:]) # table
plot.set_ylim(-1, (len(data))) # spacing out y-axis properly
Expand Down

0 comments on commit 785a2cf

Please sign in to comment.