#' @title Akritas Conditional Non-Parametric Survival Estimator
#' @name akritas
#'
#' @description The Akritas survival estimator is a conditional nearest-neighbours approach to the
#' more common Kaplan-Meier estimator. Common usage includes IPCW Survival models and measures,
#' which do not assume that censoring is independent of the covariates.
#'
#' @details
#' This implementation uses a fit/predict interface to allow estimation on unseen data after
#' fitting on training data. This is achieved by fitting the empirical CDF on the training data
#' and applying this to the new data.
#'
#' @param formula `(formula(1))`\cr
#' Objet specifying the model fit, left-hand-side of formula should describe a [survival::Surv()]
#' object.
#' @param data `(data.frame(1))`\cr
#' Training data of `data.frame` like object, internally is coerced with [stats::model.matrix()].
#' @param reverse `(logical(1))`\cr
#' If `TRUE` fits estimator on censoring distribution, otherwise (default) survival distribution.
#' @param time_variable `(character(1))`\cr
#' Alternative method to call the function. Name of the 'time' variable, required if `formula`.
#' or `x` and `Y` not given.
#' @param status_variable `(character(1))`\cr
#' Alternative method to call the function. Name of the 'status' variable, required if `formula`
#' or `x` and `Y` not given.
#' @param x `(data.frame(1))`\cr
#' Alternative method to call the function. Required if `formula, time_variable` and
#' `status_variable` not given. Data frame like object of features which is internally
#' coerced with `model.matrix`.
#' @param y `([survival::Surv()])`\cr
#' Alternative method to call the function. Required if `formula, time_variable` and
#' `status_variable` not given. Survival outcome of right-censored observations.
#' @param ... `ANY` \cr
#' Additional arguments, currently unused.
#'
#' @references
#' Akritas, M. G. (1994).
#' Nearest Neighbor Estimation of a Bivariate Distribution Under Random Censoring.
#' Ann. Statist., 22(3), 1299–1327.
#' \doi{10.1214/aos/1176325630}
#'
#' @return An object inheriting from class `akritas`.
#'
#' @examples
#' library(survival)
#' fit <- akritas(Surv(time, status) ~ ., data = rats[1:10, ])
#' print(fit)
#'
#' # alternative function calls
#' akritas(data = rats[1:10, ], time_variable = "time", status_variable = "status")
#' akritas(x = rats[1:10, c("litter", "rx", "sex")], y = Surv(rats$time, rats$status))
#' @export
akritas <- function(formula = NULL, data = NULL, reverse = FALSE,
time_variable = NULL, status_variable = NULL,
x = NULL, y = NULL, ...) {
call <- match.call()
if (!is.null(x) | !is.null(y)) {
if (is.null(x) | is.null(y)) {
stop("Both 'x' and 'y' must be provided if either non-NULL.")
} else {
if (is.null(ncol(x))) {
stop("'x' should be a data.frame like object.")
}
}
} else if (!is.null(time_variable) | !is.null(status_variable)) {
if (is.null(time_variable) | is.null(status_variable) | is.null(data)) {
stop("'time_variable', 'status_variable', and 'data' must be provided if either 'time_variable' or 'status_variable' non-NULL.") # nolint
} else {
checkmate::assertNames(c(time_variable, status_variable),
subset.of = colnames(data)
)
x <- data[, setdiff(colnames(data), c(time_variable, status_variable)), drop = FALSE]
y <- Surv(data[, time_variable], data[, status_variable])
}
} else if (!is.null(formula)) {
f <- stats::as.formula(formula, env = data)
y <- eval(f[[2]], envir = data)
if (deparse(f[[3]]) == ".") {
if (is.null(data)) {
stop("'.' in formula and no 'data' argument")
} else {
x <- data[, setdiff(colnames(data), c(deparse(f[[2]][[2]]), deparse(f[[2]][[3]]))),
drop = FALSE
]
}
} else {
x <- data[, strsplit(deparse(f[[3]]), " + ", TRUE)[[1]], drop = FALSE]
}
}
checkmate::assertClass(y, "Surv")
y <- as.matrix(y)
if (reverse) {
y[, 2] <- 1 - y[, 2]
}
xnames <- colnames(x)
x <- stats::model.matrix(~., x)[, -1, drop = FALSE]
if (ncol(x) == 1) {
Fhat <- distr6::Empirical$new(x)
} else {
Fhat <- distr6::EmpiricalMV$new(x)
}
FX <- Fhat$cdf(data = x)
return(structure(list(y = y, x = x, xnames = xnames, Fhat = Fhat, FX = FX, call = call),
class = "akritas"
))
}
#' @export
print.akritas <- function(x, ...) {
cat("\nAkritas Estimator\n\n")
cat("Call:\n ", deparse(x$call))
cat("\n\nResponse:\n Surv(", paste0(colnames(x$y), collapse = ", "), ")\n", sep = "")
cat("Features:\n ", setcollapse(x$xnames), "\n")
}
#' @export
summary.akritas <- function(object, ...) {
print.akritas(object, ...)
}
#' @title Predict method for Akritas Estimator
#'
#' @description Predicted values from a fitted Akritas estimator.
#'
#' @details
#' This implementation uses a fit/predict interface to allow estimation on unseen data after
#' fitting on training data. This is achieved by fitting the empirical CDF on the training data
#' and applying this to the new data.
#'
#' @param object (`akritas(1)`)\cr
#' Object of class inheriting from `"akritas"`.
#' @param newdata `(data.frame(1))`\cr
#' Testing data of `data.frame` like object, internally is coerced with [stats::model.matrix()].
#' If missing then training data from fitted object is used.
#' @param times `(numeric())`\cr
#' Times at which to evaluate the estimator. If `NULL` (default) then evaluated at all unique times
#' in the training set.
#' @param lambda (`numeric(1)`)\cr
#' Bandwidth parameter for uniform smoothing kernel in nearest neighbours estimation.
#' The default value of `0.5` is arbitrary and should be chosen by the user. If `lambda = 1` then
#' internally [survival::survfit] is called to fit the Kaplan-Meier estimator.
#' @param type (`numeric(1)`)\cr
#' Type of predicted value. Choices are survival probabilities over all time-points in training
#' data (`"survival"`) or a relative risk ranking (`"risk"`), which is the mean cumulative hazard
#' function over all time-points, or both (`"all"`).
#' @param distr6 `(logical(1))`\cr
#' If `FALSE` (default) and `type` is `"survival"` or `"all"` returns data.frame of survival
#' probabilities, otherwise returns a [distr6::VectorDistribution()].
#' @param ... `ANY` \cr
#' Currently ignored.
#'
#' @references
#' Akritas, M. G. (1994).
#' Nearest Neighbor Estimation of a Bivariate Distribution Under Random Censoring.
#' Ann. Statist., 22(3), 1299–1327.
#' \doi{10.1214/aos/1176325630}
#'
#' @return A `numeric` if `type = "risk"`, a [distr6::VectorDistribution()] (if `distr6 = TRUE`)
#' and `type = "survival"`; a `data.frame` if (`distr6 = FALSE`) and `type = "survival"` where
#' entries are survival probabilities with rows of observations and columns are time-points;
#' or a list combining above if `type = "all"`.
#'
#'
#' @examples
#' library(survival)
#' train <- 1:10
#' test <- 11:20
#' fit <- akritas(Surv(time, status) ~ ., data = rats[train, ])
#' predict(fit, newdata = rats[test, ])
#'
#' # when lambda = 1, identical to Kaplan-Meier
#' fit <- akritas(Surv(time, status) ~ ., data = rats[1:100, ])
#' predict_akritas <- predict(fit, newdata = rats[1:100, ], lambda = 1)[1, ]
#' predict_km <- survfit(Surv(time, status) ~ 1, data = rats[1:100, ])$surv
#' all(predict_akritas == predict_km)
#'
#' # Use distr6 = TRUE to return a distribution
#' predict_distr <- predict(fit, newdata = rats[test, ], distr6 = TRUE)
#' predict_distr$survival(100)
#'
#' # Return a relative risk ranking with type = "risk"
#' predict(fit, newdata = rats[test, ], type = "risk")
#'
#' # Or survival probabilities and a rank
#' predict(fit, newdata = rats[test, ], type = "all", distr6 = TRUE)
#' @export
predict.akritas <- function(object, newdata, times = NULL,
lambda = 0.5,
type = c("survival", "risk", "all"),
distr6 = FALSE, ...) {
type <- match.arg(type)
unique_times <- sort(unique(object$y[, 1, drop = FALSE]))
if (is.null(times)) {
times <- unique_times
} else {
times <- sort(unique(times))
}
truth <- object$y
if (missing(newdata)) {
newdata <- object$x
} else {
newdata <- stats::model.matrix(~., newdata)[, -1, drop = FALSE]
}
ord <- match(colnames(newdata), colnames(object$x), nomatch = NULL)
newdata <- newdata[, !is.na(ord), drop = FALSE]
newdata <- newdata[, ord[!is.na(ord)], drop = FALSE]
if (!checkmate::testNames(colnames(newdata), identical.to = colnames(object$x))) {
mlr3misc::stopf(
"Names in newdata should be identical to {%s}.",
paste0(colnames(object$x), collapse = ", ")
)
}
ord <- order(truth[, 1], decreasing = TRUE)
truth <- truth[ord, ]
fx_train <- object$FX[ord]
if (lambda == 1) {
surv <- survfit(Surv(time, status) ~ 1, data.frame(object$y))$surv
surv <- matrix(surv, nrow(newdata), length(surv),
byrow = TRUE,
dimnames = list(NULL, round(unique_times)))
find <- findInterval(times, as.numeric(colnames(surv)))
find[find == 0] <- 1
surv <- surv[, find, drop = FALSE]
colnames(surv) <- times
} else {
surv <- C_Akritas(
truth = truth,
times = times,
unique_times = unique_times,
FX_train = fx_train,
FX_predict = object$Fhat$cdf(data = newdata),
lambda = lambda
)
colnames(surv) <- round(times, 2)
}
ret <- list()
if (type %in% c("survival", "all")) {
if (!distr6) {
ret$surv <- surv
} else {
cdf <- apply(surv, 1, function(x) list(cdf = 1 - x))
ret$distr <- distr6::VectorDistribution$new(
distribution = "WeightedDiscrete",
shared_params = list(x = unique_times),
params = cdf,
decorators = c(
"CoreStatistics",
"ExoticStatistics"
)
)
}
}
if (type %in% c("risk", "all")) {
ret$risk <- rowMeans(-log(surv))
}
if (length(ret) == 1) {
return(ret[[1]])
} else {
return(ret)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.