classes: Extract the contents of the attribute 'classes'

Description Usage Arguments Value Examples

View source: R/classes.R

Description

If the object, x, is itself of class checkFunction, summaryFunction or visualFunction, the contents of x's attribute classes is returned. Otherwise, NULL is returned.

Usage

1
2
3
classes(x)

classes(x) <- value

Arguments

x

The object for which the classes attribute should be extracted.

value

New value

Value

The classes for which x is intended to be called, given as a vector of characters.

Examples

1
2
3
4
5
6
7
8
#Extract the classes of the checkFunction identifyMissing
classes(identifyMissing)

#Extract the classes of the summaryFunction minMax
classes(minMax)

#Extract the classes of the visualFunction basicVisual
classes(basicVisual)

dataMaid documentation built on Oct. 8, 2021, 9:08 a.m.