View source: R/DetailedCovariateSettings.R
createDefaultCovariateSettings | R Documentation |
Create default covariate settings
createDefaultCovariateSettings(
includedCovariateConceptIds = c(),
addDescendantsToInclude = FALSE,
excludedCovariateConceptIds = c(),
addDescendantsToExclude = FALSE,
includedCovariateIds = c()
)
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. |
An object of type covariateSettings
, to be used in other functions.
covSettings <- createDefaultCovariateSettings(
includedCovariateConceptIds = c(1),
addDescendantsToInclude = FALSE,
excludedCovariateConceptIds = c(2),
addDescendantsToExclude = FALSE,
includedCovariateIds = c(1)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.