filterByRowId {FeatureExtraction} | R Documentation |
Filter covariates by row ID
Description
Filter covariates by row ID
Usage
filterByRowId(covariateData, rowIds)
Arguments
covariateData |
An object of type |
rowIds |
A vector containing the rowIds to keep. |
Value
An object of type covariateData
.
Examples
covariateData <- FeatureExtraction::createEmptyCovariateData(
cohortIds = 1,
aggregated = FALSE,
temporal = FALSE
)
covData <- filterByRowId(
covariateData = covariateData,
rowIds = 1
)
[Package FeatureExtraction version 3.6.0 Index]