Expression Sets

The ExpressionSet type is a container for storing gene expression data. Following the Bioconductor ExpressionSet class, it contains a matrix of expression values, a matrix of feature data, and a matrix of sample data.

Constructor

Accessors

ExpressionData.expression_valuesFunction
expression_values(eset::ExpressionSet)::DataFrame

Extracts the expression values from an ExpressionSet. The feature names are included as a column.

By passing the type Matrix as the first argument, the function will return the expression values as a matrix.

source