Diff of /man/select_rho_partial.Rd [000000] .. [3bfed4]

Switch to unified view

a b/man/select_rho_partial.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/select_rho_partial.R
3
\name{select_rho_partial}
4
\alias{select_rho_partial}
5
\title{Data preprocessing for partial correlation analysis}
6
\usage{
7
select_rho_partial(
8
  data = NULL,
9
  class_label = NULL,
10
  id = NULL,
11
  error_curve = TRUE
12
)
13
}
14
\arguments{
15
\item{data}{This is a p*n dataframe that contains the expression levels for all biomolecules and samples.}
16
17
\item{class_label}{This is a 1*n dataframe that contains the class label with 0 for group 1 and 1 for group 2.}
18
19
\item{id}{This is a p*1 dataframe that contains the ID for each biomolecule.}
20
21
\item{error_curve}{This is a boolean value indicating whether to plot the error curve (TRUE) or not (FALSE). 
22
The default is TRUE.}
23
}
24
\value{
25
A list of processed data for the next step, and an error curve to select optimal rho value
26
    for graphical lasso.
27
}
28
\description{
29
A method that integrates differential expression (DE) analysis
30
    and differential network (DN) analysis to select biomarker candidates for
31
    cancer studies. select_rho_partial is the pre-processing step for INDEED
32
    partial differential analysis.
33
}
34
\examples{
35
select_rho_partial(data = Met_GU, class_label = Met_Group_GU, id = Met_name_GU, 
36
    error_curve = TRUE)
37
}