plotCellMapping: Plot Cell Mapping

Description Usage Arguments Details Value References Examples

Description

Visualizes the transitions among the cells in the General Cell Mapping approach.

Usage

1
plotCellMapping(feat.object, control)

Arguments

feat.object

[FeatureObject]
A feature object as created by createFeatureObject.

control

[list]
A list, which stores additional control arguments. For further information, see details.

Details

Possible control arguments are:

Value

[plot].

References

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# (1) Define a function:
library(smoof)
f = makeHosakiFunction()

# (2) Create a feature object:
X = cbind(
  x1 = runif(n = 100, min = -32, max = 32),
  x2 = runif(n = 100, min = 0, max = 10)
)
y = apply(X, 1, f)
feat.object = createFeatureObject(X = X, y = y, blocks = c(4, 6))

# (3) Plot the cell mapping:
plotCellMapping(feat.object)

flacco documentation built on April 1, 2020, 1:06 a.m.