is.cvCovEst()
provides a generic method for checking if
input is of class cvCovEst
.
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)
#> [1] TRUE