- df_numerator
data.frame
with exclusively numeric variables with
the numerator samples
- df_denominator
data.frame
with exclusively numeric variables
with the denominator samples (must have the same variables as
df_denominator
)
- m
Integer vector indicating the number of eigenvectors to use in the
spectral series expansion. Defaults to 50 evenly spaced values between 1 and
the number of denominator samples (or the largest number of samples that can
be used as centers in the cross-validation scheme).
- scale
"numerator"
, "denominator"
, or NULL
,
indicating whether to standardize each numeric variable according to the
numerator means and standard deviations, the denominator means and standard
deviations, or apply no standardization at all.
- nsigma
Integer indicating the number of sigma values (bandwidth
parameter of the Gaussian kernel gram matrix) to use in cross-validation.
- sigma_quantile
NULL
or numeric vector with probabilities to
calculate the quantiles of the distance matrix to obtain sigma values. If
NULL
, nsigma
values between 0.05
and 0.95
are
used.
- sigma
NULL
or a scalar value to determine the bandwidth of the
Gaussian kernel gram matrix. If NULL
, nsigma
values between
0.05
and 0.95
are used.
- ncenters
integer If smaller than the number of denominator observations,
an approximation to the eigenvector expansion based on only ncenters samples
is performed, instead of the full expansion. This can be useful for large
datasets. Defaults to NULL
, such that all denominator samples are used.
- cv
logical indicating whether to use cross-validation to determine the
optimal sigma value and the optimal number of eigenvectors.
- nfold
Integer indicating the number of folds to use in the
cross-validation scheme. If cv
is FALSE
, this parameter is
ignored.
- parallel
logical indicating whether to use parallel processing in the
cross-validation scheme.
- nthreads
NULL
or integer indicating the number of threads to
use for parallel processing. If parallel processing is enabled, it defaults
to the number of available threads minus one.
- progressbar
Logical indicating whether or not to display a progressbar.