Perform spectral clustering for a different combinations of indices and kernels
Usage
clustInd_spc(
ind_data,
vars_combinations,
kernel_list = c("rbfdot", "polydot"),
n_cluster = 2,
true_labels = NULL,
n_cores = 1
)
Arguments
- ind_data
Dataframe containing indices applied to the original data and its first and second derivatives. See generate_indices.
- vars_combinations
list
containing one or more combinations of indices inind_data
. If it is non-named, the names of the variables are set to vars1, ..., varsk, where k is the number of elements invars_combinations
.- kernel_list
List of kernels
- n_cluster
Number of clusters to create
- true_labels
Vector of true labels for validation (if it is not known true_labels is set to NULL)
- n_cores
Number of cores to do parallel computation. 1 by default, which mean no parallel execution.
Examples
vars1 <- c("dtaEI", "dtaMEI")
vars2 <- c("dtaHI", "dtaMHI")
data <- ehymet::sim_model_ex1()
data_ind <- generate_indices(data)
clustInd_spc(data_ind, list(vars1, vars2))
#> $spc_rbfdot_dtaEIdtaMEI
#> $spc_rbfdot_dtaEIdtaMEI$cluster
#> [1] 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 2 1 1 1 1 2 1 1
#> [38] 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
#> [75] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
#>
#> $spc_rbfdot_dtaEIdtaMEI$internal_metrics
#> $spc_rbfdot_dtaEIdtaMEI$internal_metrics$davies_bouldin
#> [1] 0.4142632
#>
#> $spc_rbfdot_dtaEIdtaMEI$internal_metrics$dunn
#> [1] 0.1167633
#>
#> $spc_rbfdot_dtaEIdtaMEI$internal_metrics$silhouette
#> [1] 0.6790614
#>
#> $spc_rbfdot_dtaEIdtaMEI$internal_metrics$infomax
#> [1] 0.4021792
#>
#>
#> $spc_rbfdot_dtaEIdtaMEI$time
#> [1] 0.2154727
#>
#>
#> $spc_rbfdot_dtaHIdtaMHI
#> $spc_rbfdot_dtaHIdtaMHI$cluster
#> [1] 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1
#> [38] 1 1 1 1 1 1 1 1 1 2 1 2 1 2 2 1 2 2 2 2 2 2 2 1 1 1 2 2 2 2 2 2 2 1 2 1 1
#> [75] 2 2 1 2 2 1 2 2 2 2 1 2 2 2 2 1 1 2 2 2 2 2 2 1 2 2
#>
#> $spc_rbfdot_dtaHIdtaMHI$internal_metrics
#> $spc_rbfdot_dtaHIdtaMHI$internal_metrics$davies_bouldin
#> [1] 0.6119572
#>
#> $spc_rbfdot_dtaHIdtaMHI$internal_metrics$dunn
#> [1] 0.02578455
#>
#> $spc_rbfdot_dtaHIdtaMHI$internal_metrics$silhouette
#> [1] 0.5549025
#>
#> $spc_rbfdot_dtaHIdtaMHI$internal_metrics$infomax
#> [1] 0.985815
#>
#>
#> $spc_rbfdot_dtaHIdtaMHI$time
#> [1] 0.04849219
#>
#>
#> $spc_polydot_dtaEIdtaMEI
#> $spc_polydot_dtaEIdtaMEI$cluster
#> [1] 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 2 1 1 1 1 2 1 1
#> [38] 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
#> [75] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
#>
#> $spc_polydot_dtaEIdtaMEI$internal_metrics
#> $spc_polydot_dtaEIdtaMEI$internal_metrics$davies_bouldin
#> [1] 0.4142632
#>
#> $spc_polydot_dtaEIdtaMEI$internal_metrics$dunn
#> [1] 0.1167633
#>
#> $spc_polydot_dtaEIdtaMEI$internal_metrics$silhouette
#> [1] 0.6790614
#>
#> $spc_polydot_dtaEIdtaMEI$internal_metrics$infomax
#> [1] 0.4021792
#>
#>
#> $spc_polydot_dtaEIdtaMEI$time
#> [1] 0.04926634
#>
#>
#> $spc_polydot_dtaHIdtaMHI
#> $spc_polydot_dtaHIdtaMHI$cluster
#> [1] 2 2 2 2 2 2 2 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 1 2 2 2 2 2 2
#> [38] 2 2 2 2 2 2 2 2 2 1 2 1 2 1 1 2 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 2 1 2 2
#> [75] 1 1 2 1 1 2 1 1 1 1 2 1 2 1 1 2 2 1 1 1 2 1 1 2 1 1
#>
#> $spc_polydot_dtaHIdtaMHI$internal_metrics
#> $spc_polydot_dtaHIdtaMHI$internal_metrics$davies_bouldin
#> [1] 0.6096794
#>
#> $spc_polydot_dtaHIdtaMHI$internal_metrics$dunn
#> [1] 0.0160175
#>
#> $spc_polydot_dtaHIdtaMHI$internal_metrics$silhouette
#> [1] 0.5552741
#>
#> $spc_polydot_dtaHIdtaMHI$internal_metrics$infomax
#> [1] 0.9765005
#>
#>
#> $spc_polydot_dtaHIdtaMHI$time
#> [1] 0.05234265
#>
#>