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_stage_simple.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (23 sloc)
886 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/add_stage_simple.R | |
\name{add_stage_simple} | |
\alias{add_stage_simple} | |
\title{Adds column with simplified tumor stages without subtypes} | |
\usage{ | |
add_stage_simple(meta_data, tumor_stage = "tumor_stage", new_name = "stage") | |
} | |
\arguments{ | |
\item{meta_data}{A data frame} | |
\item{tumor_stage}{Character or integer - column name or index of tumor stage} | |
\item{new_name}{Character - name of new column} | |
} | |
\value{ | |
Returns the data frame with an additional column. | |
} | |
\description{ | |
This function adds a new column "stage" to the meta data containing the simplified tumor stages (i.e. without subtypes). It uses the function stage_to_numeral. | |
As for now 4 subtypes are accepted: a,b,c and 0 - it doesnt compute "stage i/ii NOS", "stage 0" and "stage x" | |
} | |
\examples{ | |
lungMeta <- add_stage_simple(lungmeta, "tumor_stage") | |
} |