createDefaultTemporalCovariateSettings {FeatureExtraction} | R Documentation |
Create default covariate settings
Description
Create default covariate settings
Usage
createDefaultTemporalCovariateSettings(
includedCovariateConceptIds = c(),
addDescendantsToInclude = FALSE,
excludedCovariateConceptIds = c(),
addDescendantsToExclude = FALSE,
includedCovariateIds = c()
)
Arguments
includedCovariateConceptIds |
A list of concept IDs that should be used to construct covariates. |
addDescendantsToInclude |
Should descendant concept IDs be added to the list of concepts to include? |
excludedCovariateConceptIds |
A list of concept IDs that should NOT be used to construct covariates. |
addDescendantsToExclude |
Should descendant concept IDs be added to the list of concepts to exclude? |
includedCovariateIds |
A list of covariate IDs that should be restricted to. |
Value
An object of type covariateSettings
, to be used in other functions.
Examples
covSettings <- createDefaultTemporalCovariateSettings(
includedCovariateConceptIds = c(1),
addDescendantsToInclude = FALSE,
excludedCovariateConceptIds = c(2),
addDescendantsToExclude = FALSE,
includedCovariateIds = c(1)
)
[Package FeatureExtraction version 3.6.0 Index]