funcc_show_bicluster_coverage {FunCC}R Documentation

plotting coverage of each bi-cluster

Description

funcc_show_bicluster_coverage graphically shows the coverage of each bi-cluster in terms of percentage of included functions

Usage

funcc_show_bicluster_coverage(
  fun_mat,
  res_input,
  not_assigned = TRUE,
  max_coverage = 1
)

Arguments

fun_mat

The data array (n x m x T) where each entry corresponds to the measure of one observation i, i=1,...,n, for a functional variable m, m=1,...,p, at point t, t=1,...,T

res_input

An object produced by the funcc_biclust function

not_assigned

logicol: if true also the cluster of not assigned elements is included

max_coverage

scalar: percentage of maximum cumulative coverage to be shown

Value

a figure representing for each bi-cluster the coverage in terms of percentage of included functions

Examples

 
data("funCCdata")
res <- funcc_biclust(funCCdata,delta=10,theta=1,alpha=1,beta=0,const_alpha=TRUE)
funcc_show_bicluster_coverage(funCCdata,res)

[Package FunCC version 1.0 Index]