Learn R Programming

semisupKernelPCA (version 0.1.5)

del: Deletes from an object

Description

Generic method to remove elements from an object.

Usage

del(object, ...)

Arguments

object
object from which elements should be removed
...
to allow further arguments by implementations

Value

  • updated object.

Examples

Run this code
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)

Run the code above in your browser using DataLab