Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekt committed Jan 23, 2024
1 parent 3006748 commit 316705e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ezplotly_bio/ezplotly_bio.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ def ecdf(
xlabel=xlabel,
ylabel=ylabel,
xlim=[min_bin, max_bin + bin_size],
ylim=[0, 1.0],
ylim=[0, 1.0 + y_dtick],
name=name,
xscale=xscale,
yscale=yscale,
Expand Down Expand Up @@ -684,7 +684,7 @@ def rcdf(
xlabel=xlabel,
ylabel=ylabel,
xlim=[min_bin, max_bin + bin_size],
ylim=[0, 1.0],
ylim=[-0.1, 1.1],
name=name,
xscale=xscale,
yscale=yscale,
Expand Down

0 comments on commit 316705e

Please sign in to comment.