crunch (version 1.27.7)

showTransforms: Show transformations on a Crunch object

Description

showTransforms([variable]) shows a summary of a categorical variable that has transforms with the transforms calculated and applied. This is useful to see what kind transforms exist before including the variable in a CrunchCube.

Usage

showTransforms(x)

# S4 method for CategoricalVariable showTransforms(x)

# S4 method for CrunchCube showTransforms(x)

Arguments

x

a Categorical variable or CrunchCube

Value

summary of the variable, or the full CrunchCube with transforms applied

Details

showTransforms([CrunchCube]) shows the CrunchCube with all transforms calculated and applied. This is the default display method for cubes, so should not be frequently needed.

In both cases, an array is returned that includes the values of both the underlying data (either category counts or CrunchCube cell values) as well as the transformations applied.

Examples

Run this code
# NOT RUN {
showTransforms(ds$variable)
# }

Run the code above in your browser using DataCamp Workspace