del: Deletes from an object

Description Usage Arguments Value Author(s) Examples

View source: R/functions.R

Description

Generic method to remove elements from an object.

Usage

1
del(object, ...)

Arguments

object

object from which elements should be removed

...

to allow further arguments by implementations

Value

updated object.

Author(s)

Pierrick Bruneau
pbruneau@gmail.com

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")
lk <- del(lk, 1, 5)

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