[3172cb]: / man / IntegratedLearnerFromMAE.Rd

Download this file

47 lines (41 with data), 1.5 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/IntegratedLearnerFromMAE.R
\name{IntegratedLearnerFromMAE}
\alias{IntegratedLearnerFromMAE}
\title{MultiAssayExperiment wrapper for IntegratedLearner}
\usage{
IntegratedLearnerFromMAE(
mae,
experiment,
assay.type,
outcome.col,
valid.col = NULL,
...
)
}
\arguments{
\item{mae}{\code{\link{MultiAssayExperiment}}}
\item{experiment}{\code{Character vector} or \code{Integer vector}. Specifies
experiments from \code{mae}.}
\item{assay.type}{\code{Character vector}. Specified the name of assay for
each experiment. The length must be equal to \code{experiment}.}
\item{outcome.col}{\code{Character scalar}. Specifies the name of column
from \code{colData} that includes the outcome variable.}
\item{valid.col}{\code{Character scalar}. Specifies the name of column
from \code{colData} that includes the information on which sample belongs to
validation set. The variable must be \code{logical}. (Default: \code{NULL})}
\item{...}{additional arguments passed to \code{IntegratedLearner()}
\itemize{
\item \code{na.rm}: \code{Logical scalar}. Should features with missing
values be dropped? (Default: \code{FALSE})
}}
}
\value{
A \code{SuperLearner} object containing the trained model fits.
}
\description{
This function offers a simple interface to the \code{IntegratedLearner()}
from a \code{\link{MultiAssayExperiment}} object. Instead of wrangling the
data, the function does it for the user and feeds it to
\code{IntegratedLearner()}.
}