Prints a simple representation of a CPOConstructor, CPO or CPOTrained. If verbose is TRUE, more information about the given objects will be given. For CPOConstructor, that is the trafo and retrafo functions, for CPO, the individual constituents of a compound CPO will be printed.

Verbose printing can also be done using the ! operator. !cpo is equivalent to print(cpo, verbose = TRUE).

# S3 method for CPOConstructor
print(x, verbose = FALSE, ...)

# S3 method for CPO
print(x, verbose = FALSE, ...)

# S3 method for CPOTrained
print(x, verbose = FALSE, ...)

# S3 method for CPOConstructor
!(x)

# S3 method for CPO
!(x)

# S3 method for CPOTrained
!(x)

Arguments

x

[CPOConstructor | CPO | CPOTrained]
The CPOConstructor to print.

verbose

[logical(1)]
Whether to print further information. Default is FALSE.

...

[any]
Further arguments.

Value

[invisible(NULL)].

See also