check: Generic method to check an object

Description Usage Arguments Value Author(s) See Also Examples

View source: R/functions.R

Description

Checks an object, returning TRUE or FALSE.

Usage

1
check(object, ...)

Arguments

object

object to be checked

...

to allow further arguments by implementations

Value

TRUE if checking procedure successful, FALSE else.

Author(s)

Pierrick Bruneau
pbruneau@gmail.com

See Also

check.linkinfo

Examples

1
2
3
4
5
6
7
data(iris)

krn <- computeKernel(iris[,1:4])
lk <- linkinfo(krn)
lk <- add(lk, 1, 5, "link")
lk <- add(lk, 3, 55, "notlink")
check(lk)

semisupKernelPCA documentation built on May 29, 2017, 8:59 p.m.