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/add_coldata_survival.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
37 lines (31 sloc)
1.23 KB
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/add_coldata_survival.R | |
\name{add_coldata_survival} | |
\alias{add_coldata_survival} | |
\title{Add columns for Survival Analysis} | |
\usage{ | |
add_coldata_survival( | |
summarized_experiment, | |
time_to_event = "days_to_death", | |
time_follow_censor = "days_to_last_follow_up", | |
event = "vital_status", | |
event_names = c("alive", "dead"), | |
drop_na = T, | |
na_if = "not reporetd" | |
) | |
} | |
\arguments{ | |
\item{summarized_experiment}{A SummarizedExperiment object or a data frame} | |
\item{time_to_event}{Character - column name of time to the event} | |
\item{time_follow_censor}{Character - column name of time of last follow up or right censoring} | |
\item{event}{Character - column name of event (vital_status)} | |
\item{event_names}{Character - chracter vector with two instances representing the levels of "event". Default = c("alive", "dead")} | |
\item{drop_na}{Logical - drop rows with missing values in event or time of event?} | |
\item{na_if}{Character - mark character "na_if" as NA} | |
} | |
\description{ | |
This function calculates event times from a data frame. Data from TCGA is not in the right format for survival analysis. | |
} | |
\details{ | |
Column event needs to consist of 2 factor levels: "alive" and "dead". | |
} |