info.plmDE: Obtain Information about 'plmDE' object

Description Usage Arguments Author(s) See Also Examples

View source: R/info.plmDE.R

Description

Returns a short overview of the data contained plmDE objects.

Usage

1
2
## S3 method for class 'plmDE'
info(Object, ...)

Arguments

Object

An object of type plmDE.

...

Parameters from info left unused.

Author(s)

Jonas Mueller

See Also

info

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## create an object of type \code{plmDE} containing disease 
## with "control" and "disease" and measurements of weight and severity:
ExpressionData = as.data.frame(matrix(abs(rnorm(10000, 1, 1.5)), ncol = 100))
names(ExpressionData) = sapply(1:100, function(x) paste("Sample", x))
Genes = sapply(1:100, function(x) paste("Gene", x))
DataInfo = data.frame(sample = names(ExpressionData), group = c(rep("Control", 50), rep("Diseased", 50)), weight = abs(rnorm(100, 50, 20)), severity = c(rep(0, 50), abs(rnorm(50, 100, 20))))
plmDEobject = plmDEmodel(Genes, ExpressionData, DataInfo)

## get information:
info(plmDEobject)

plmDE documentation built on May 29, 2017, 6:37 p.m.