View source: R/reindeeR_signalextensions.R
match_parameters | R Documentation |
This function takes an Emu database handle and a function defined in superassp or a named package, and outputs a tibble::tibble containing function paramers to use for each bundle. The function parameters are derived from the database of age and gender specific settings obtained from in the literature based Gender and Age metadata information set for the bundle.
match_parameters(
emuDBhandle,
onTheFlyFunctionName,
onTheFlyParams = NULL,
metadata.defaults = list(Gender = NA, Age = 35),
recompute = FALSE,
package = "superassp"
)
emuDBhandle |
The Emu database handle. |
onTheFlyFunctionName |
The name of the digital speech processing function |
onTheFlyParams |
If default parameters are given, they are applied to all bundles / files, overwriting parameters set based on metadata. |
metadata.defaults |
Default values for metadata. Usually used for setting Age and Gender for bundles missing that information. |
recompute |
If |
package |
A tibble::tibble with one row per bundle / session and with extra columns containing parameters to apply.
retuire(superassp)
reindeer:::create_ae_db(verbose = TRUE) -> emuDBhandle
reindeer:::add_dummy_metadata(emuDBhandle)
mp <- match_parameters(emuDBhandle,
onTheFlyFunctionName = "forest",onTheFlyParams = list(nominalF1=200),metadata.defaults = list(Age=35,Gender=NA)))
print(mp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.