Learn R Programming

funLBM (version 2.3)

plot.funLBM: Plotting co-clustering results of funLBM

Description

Plotting of funLBM co-clustering results: functional means, block matrix, parameters, ...

Usage

# S3 method for funLBM
plot(x,type='blocks',...)

Arguments

x

An object produced by the funLBM function,

type

The type of plot to display. Possible plots are 'blocks' (default), 'means', 'evolution', 'likelihood', 'proportions',

Additional arguments to provide.

See Also

funLBM

Examples

Run this code
# NOT RUN {
## Co-clustering of simulated data
set.seed(12345)
X = simulateData(n = 30, p = 30, t = 15)
out = funLBM(X$data,K=4,L=3)

# Visualization of results
plot(out,type='blocks')
plot(out,type='proportions')
plot(out,type='means')
# }

Run the code above in your browser using DataLab