sdcTargetMatrixClass-class: S4 Target Matrix

Description Usage Arguments Details Methods (by generic) Slots See Also Examples

Description

The taget matrix is a matrix with the same dimensions as the data from which it is derived, that indicates the number of combinations at a specific level of targetting for which the synthesis of a data element will make the record "sufficiently common".

Usage

1
2
## S4 method for signature 'sdcTargetMatrixClass'
initialize(.Object, ...)

Arguments

.Object

An sdcTargetMatrixClass object.

...

The optional parameters specifying the basis of the target matrix (Tdef).

Details

Additional information is stored in the slots.

Methods (by generic)

Slots

.Data

A matrix.

Tdef

A target definition class object.

See Also

sdcTargetDefinitionClass,

Examples

1
2
3
4
set.seed(256)
my.X <- data.frame(matrix(ifelse(runif(500)>.5, TRUE, FALSE), ncol = 5))
my.tdef <- new("sdcTargetDefinitionClass", X = my.X)
new("sdcTargetMatrixClass", Tdef = my.tdef)

sdcTarget documentation built on May 2, 2019, 8:16 a.m.