is.cvCovEst {cvCovEst} | R Documentation |
Check for cvCovEst Class
Description
is.cvCovEst()
provides a generic method for checking if
input is of class cvCovEst
.
Usage
is.cvCovEst(x)
Arguments
x |
The specific object to test. |
Value
A logical
indicating TRUE
if x
inherits from
class cvCovEst
.
Examples
cv_dat <- cvCovEst(
dat = mtcars,
estimators = c(
thresholdingEst, sampleCovEst
),
estimator_params = list(
thresholdingEst = list(gamma = seq(0.1, 0.3, 0.1))
),
center = TRUE,
scale = TRUE
)
is.cvCovEst(cv_dat)
[Package cvCovEst version 1.2.2 Index]