Permalink
Cannot retrieve contributors at this time
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?
mmRmeta/man/calculate_surv_fit.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (28 sloc)
946 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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). | |
} |