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/use_pcr_nv.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50 lines (42 sloc)
1.57 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/use_nested_cv.R | |
\name{use_pcr_nv} | |
\alias{use_pcr_nv} | |
\title{Penalized Cox Regression With Nested CV} | |
\usage{ | |
use_pcr_nv( | |
summarized_experiment, | |
model_matrix = NULL, | |
variables = NULL, | |
add_survival = T, | |
stratify = T, | |
time_to_event = "days_to_death", | |
time_follow_censor = "days_to_last_follow_up", | |
event = "vital_status", | |
k_outer_loop = 10, | |
k_inner_loop = 5, | |
seed = 12, | |
... | |
) | |
} | |
\arguments{ | |
\item{summarized_experiment}{A SummarizedExperiment object} | |
\item{variables}{Character Vector - column names of uses variables} | |
\item{add_survival}{Logical - add columns to data for survival anaylsis} | |
\item{stratify}{Logical - stratify events in folds?} | |
\item{time_to_event}{Character - column name of time to the event (e.g. death, relapse)} | |
\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{seed}{Integer - Number for set.seed} | |
\item{...}{Parameters for glmnet} | |
} | |
\value{ | |
Returns either a SummarizedExperiment or a data frame with 2 additional columns in colData (time, event). May have fewer rows because of missing data. | |
} | |
\description{ | |
This function calulates penalized cox regression with nested cross validation | |
} | |
\details{ | |
If no model_matrix is omitted you can hand over column names of which a model matrix is created from. Either model_matrix or variables must not be NULL. Addionally you need to specify the column names for mmRmeta::add_coldata_survival | |
if add_survival == TRUE. | |
} |