Switch to unified view

a b/OmicsFold/man/merge.feature.stability.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/feature_loadings.R
3
\name{merge.feature.stability}
4
\alias{merge.feature.stability}
5
\title{Merge DIABLO stability onto a data frame of features}
6
\usage{
7
\method{merge}{feature.stability}(features, stability)
8
}
9
\arguments{
10
\item{features}{Data frame of top features, e.g. provided by
11
get.diablo.top.loadings().}
12
13
\item{stability}{Data frame of feature stability, e.g. provided by
14
diablo.selection.stability().}
15
}
16
\value{
17
Data frame combining top features with their measured stability.
18
}
19
\description{
20
Utility function to combine top loading factors extracted from a trained
21
multi-omics mixOmics (DIABLO) model with the feature stability, previously
22
retrieved from the performance evaluation using e.g.
23
diablo.selection.stability and create a nicely formatted data frame.
24
}
25
\examples{
26
\dontrun{
27
merge.feature.stability(get.diablo.top.loadings(diablo.tuned.analysis$loadings$metab), diablo.selection.stability(perf.diablo.analysis, comp=1, block=1))
28
}
29
}