Learn R Programming

Allspice (version 1.0.7)

information,Classifier-method: Classifier contents

Description

Information about the assets of a classifier

Usage

information(obj)

Value

A list with three elements: covariates is a data frame that contains the variable names that are included in the classification assets, configuration contains the analysis settings for each asset and categories contains the labels and visual attributes for the assets.

Arguments

obj

An object of the class Classifier.

Examples

Run this code
# Show the contents of the b-cell ALL classifier.
cls <- classifier(verbose=FALSE)
info <- information(cls)
print(info$covariates)
print(info$configuration)
print(head(info$categories))
print(tail(info$categories))

Run the code above in your browser using DataLab