Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/calculate_survfit.R
\name{calculate_surv_fit}
\alias{calculate_surv_fit}
\title{Calculate Survival Fit}
\usage{
calculate_surv_fit(
df,
time_event = "days_to_death",
time_follow = "days_to_last_follow_up",
status = "vital_status",
event_names = c("alive", "dead"),
no_data = F,
by = NULL
)
}
\arguments{
\item{df}{A data frame}
\item{time_event}{Column name - time to death}
\item{time_follow}{Column name - time to last follow up or censoring}
\item{status}{Column name - event status encoded as "alive" and "dead"}
\item{no_data}{Should the used that in list be returned every time?}
\item{by}{Column name - grouping variable}
\item{...}{more variables for \link[survminer]{ggsurvplot}}
}
\description{
Calculate fit for survial Plots. Use \code{\link[survminer]{ggsurvplot}} for plotting. Calculates the time to the event(censoring or death).
}