Learn R Programming

sdcTarget (version 0.9-11)

sdcTargetDefinitionClass-class: S4 Target Definition

Description

The SDC target definition is used to calculate a target matrix.

Usage

## S3 method for class 'sdcTargetDefinitionClass':
initialize(.Object, ...)

Arguments

.Object
An sdcTargetDefinitionClass object.
...
The optional parameters specifying the data and other options. Among these are ll{ Name Description X A data frame with the data, not necessarily standardised.

Methods (by generic)

  • initialize:

Details

The hashing definition presently handles only categorical fields, which limits the applicability of this software accordingly.

See Also

sdcTargetMatrixClass,

Examples

Run this code
new("sdcTargetDefinitionClass")
set.seed(256)
my.X <- data.frame(matrix(ifelse(runif(500)>.5, TRUE, FALSE), ncol = 5))
new("sdcTargetDefinitionClass", X = my.X)

Run the code above in your browser using DataLab