Note: This function is deprecated. This function computes correlations between columns of Mel-filterbank energy features. Note: Currently, this function does not take into account chunk boundaries.

get_band_correlations(band_samples, n_cols = 20, method = "spearman")

Arguments

band_samples

Samples of chunks of Mel-filterbank energy features. Typically created with get_band_samples.

n_cols

Number of columns that should be sampled. Defaults to 20.

method

A character string indicating which correlation coefficient (or covariance) is to be computed. One of "spearman" (default), "kendall", or "pearson": can be abbreviated.

Value

A data frame.

Author

Dominic Schmitz

Examples

if (FALSE) {
band_correlations <- get_band_correlations(band_samples)
}