plot.funLBM {funLBM} | R 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
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')
[Package funLBM version 2.3 Index]