Transformation.identity: Create an Identity 'TransformedData' Instance

Description Usage Arguments Value See Also Examples

View source: R/identity.R

Description

The resulting data will be the original data, i.e., an identity transformation.

Usage

1

Arguments

data

the data

Value

the identity transformed data

See Also

TransformedData.new

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
Transformation.identity(c(1,2,3))
# An object of class "TransformedData"
# Slot "transformation":
#   An object of class "Transformation"
# Slot "forward":
#   function (x)
#     x
# <bytecode: 0x3fe24f0>
#   <environment: namespace:base>
#
#   Slot "backward":
#   function (x)
#     x
# <bytecode: 0x3fe25d0>
#   <environment: namespace:base>
#
#   Slot "complexity":
#   [1] 0
#
# Slot "data":
#   [1] 1 2 3

thomasWeise/dataTransformeR documentation built on May 14, 2019, 8:03 a.m.