Skip to content

Commit

Permalink
introduce keyword only for univariate sa
Browse files Browse the repository at this point in the history
  • Loading branch information
eroell committed Dec 1, 2024
1 parent 1940ace commit 18f9292
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ehrapy/tools/_sa.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ def kaplan_meier(
adata: AnnData,
duration_col: str,
event_col: str | None = None,
*,
timeline: list[float] | None = None,
entry: str | None = None,
label: str | None = None,
Expand Down Expand Up @@ -496,6 +497,7 @@ def nelson_aalen(
adata: AnnData,
duration_col: str,
event_col: str | None = None,
*,
timeline: list[float] | None = None,
entry: str | None = None,
label: str | None = None,
Expand Down Expand Up @@ -561,6 +563,7 @@ def weibull(
adata: AnnData,
duration_col: str,
event_col: str,
*,
timeline: list[float] | None = None,
entry: str | None = None,
label: str | None = None,
Expand Down

0 comments on commit 18f9292

Please sign in to comment.