edc_find_value {EDCimport} | R Documentation |
Search the whole database
Description
Find a keyword in columns or values, in all the datasets of the database.
Usage
edc_find_value(
keyword,
ignore_case = TRUE,
data = get_datasets(),
lookup = edc_lookup()
)
edc_find_column(keyword, ignore_case = TRUE, lookup = edc_lookup())
Arguments
keyword |
The keyword to search for. Regular expressions are only supported in |
ignore_case |
Logical. If |
data |
A list of datasets. |
lookup |
A lookup table. |
Value
a tibble
Examples
db = edc_example()
load_database(db)
edc_find_value("respi")
edc_find_value(2010)
edc_find_column("ad")
edc_find_column("date")
#with regex
edc_find_column("\\d")
edc_find_column("\\(") #you need to escape special characters
[Package EDCimport version 0.6.0 Index]