a b/OmicsFold/man/get.diablo.top.loadings.with.stability.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/feature_loadings.R
3
\name{get.diablo.top.loadings.with.stability}
4
\alias{get.diablo.top.loadings.with.stability}
5
\title{Get DIABLO top loadings and stabilities}
6
\usage{
7
get.diablo.top.loadings.with.stability(
8
  trained.model,
9
  perf.result,
10
  block,
11
  feature.count = 20
12
)
13
}
14
\arguments{
15
\item{trained.model}{A multiomics DIABLO model.}
16
17
\item{perf.result}{The results from a perf test on the above model.}
18
19
\item{block}{The name or index of the block to get the data for.}
20
21
\item{feature.count}{The number of top loadings from each component to
22
include.}
23
}
24
\value{
25
A dataframe containing the top (by absolute magnitude) factor
26
loadings for each component and selection stability values for those
27
features.
28
}
29
\description{
30
Get a dataframe showing the top ranked loading factors for a trained mixOmics
31
multi-omics DIABLO model along with selection stability values.  Where a
32
feature appears in more than one component, the selection stability value
33
shown is for the lowest numbered component.
34
}
35
\examples{
36
\dontrun{
37
get.diablo.top.loadings.with.stability(diablo.model, diablo.perf.result, 'species', 100)
38
}
39
}