View source: R/filterInObservation.R
filterInObservation | R Documentation |
Filter the rows of a 'cdm_table' to the ones in observation that 'indexDate' is in observation.
filterInObservation(x, indexDate)
x |
A 'cdm_table' object. |
indexDate |
Name of a column of x that is a date. |
A 'cdm_table' that is a subset of the original table.
## Not run:
con <- duckdb::dbConnect(duckdb::duckdb(CDMConnector::eunomiaDir()))
cdm <- CDMConnector::cdmFromCon(
con = con, cdmSchema = "main", writeSchema = "main"
)
cdm$condition_occurrence |>
filterInObservation(indexDate = "condition_start_date") |>
dplyr::compute()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.