a b/R/data.R
1
#' GU cirrhosis (CIRR) and GU hepatocellular carcinoma (HCC) data.
2
#'
3
#' A dataset containing the expression levels of 39 metabolites on a total of 120 subjects (HCC: 60; CIRR: 60).
4
#'
5
#' @format A dataframe with 39 variables (rows) and 120 subjects (columns).
6
"Met_GU"
7
8
9
#' Group label.
10
#'
11
#' A dataset containing the group information (CIRR group: 0 and HCC group: 1).
12
#'
13
#' @format A dataframe with 1 row and 120 (subjects) columns.
14
"Met_Group_GU"
15
16
17
#' KEGG ID
18
#'
19
#' A dataset containing the KEGG ID for each metabolite.
20
#'
21
#' @format A dataframe with 39 KEGG ID as rows and 1 column.
22
"Met_name_GU"
23
24
25
26
#' P-values obtained by differential expression (DE) analysis.
27
#'
28
#' A dataset containing the p-value for each metabolite obtained through DE analysis.
29
#'
30
#' @format A data frame with 39 rows and 2 variables:
31
#' \describe{
32
#'   \item{KEGG.ID}{KEGG ID}
33
#'   \item{p.value}{p-value}
34
#' }
35
"pvalue_M_GU"
36
37