Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

includes RMST, difference in RMST and confidence intervals #1526

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on May 22, 2023

  1. includes RMST, difference in RMST and confidence intervals

    Implements RMST, difference in RMST from the R package:
    https://cran.r-project.org/package=survRM2
    
    Includes RMST of one population (point estimate and confidence interval), difference in RMST of 2 populations (point estimate, p-value, and confidence intervals). Addresses CamDavidsonPilon#821
    bayesfactor committed May 22, 2023
    Configuration menu
    Copy the full SHA
    e291356 View commit details
    Browse the repository at this point in the history
  2. Update statistics.py

    add check on point_in_time argument for difference in RMST
    bayesfactor committed May 22, 2023
    Configuration menu
    Copy the full SHA
    f447b26 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. update rmst calculation

    Changes:
    1. fixed an issue of returning NaN confidence intervals if the followup time `point_in_time` is greater than the last observed event. Using `.replace(np.inf, 0)`, we correct the issue and return correct confidence intervals for that edge case.
    2. cosmetic refactoring to do less recalculation  and rely more on pre-calculated values stored in `fitterA`
    bayesfactor committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    107da27 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. Configuration menu
    Copy the full SHA
    514e898 View commit details
    Browse the repository at this point in the history