PSsurvival 0.2.0

Breaking Changes

New Features

Documentation

Internal

Migration Guide for Existing Users

If upgrading from version 0.1.0:

Example migration:

# Old (v0.1.0)
result <- surveff(
  data = mydata,
  ps_formula = Z ~ X1 + X2,
  censoring_formula = Surv(time, event) ~ X1,
  estimand = "overlap",
  censoring_method = "weibull"
)

# New (v0.2.0)
result <- surveff(
  data = mydata,
  ps_formula = Z ~ X1 + X2,
  censoring_formula = Surv(time, event) ~ X1,
  weight_method = "OW",
  censoring_method = "weibull"
)

PSsurvival 0.1.0