plot.funLBM: Plotting co-clustering results of funLBM

View source: R/plot.funLBM.R

plot.funLBMR Documentation

Plotting co-clustering results of funLBM

Description

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

Usage

## S3 method for class '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


## 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')


funLBM documentation built on April 11, 2022, 5:06 p.m.

Related to plot.funLBM in funLBM...