concept_find | R Documentation |
A wrapper function for api_concepts
searching for a
term or a list of concepts
concept_find( term = NULL, conceptIds = NULL, ecl = NULL, activeFilter = TRUE, encoding = "UTF-8", silent = FALSE, limit = snomedizer_options_get("limit"), ... )
term |
a string containing search terms |
conceptIds |
a character vector of one or more SNOMED CT codes to search |
ecl |
a character expression constraint query (with full inference). Consult the Expression Constraint Language guide for more detail. |
activeFilter |
whether to restrict results to active concepts. Default is 'TRUE'. Consult the SNOMED glossary for more detail. |
encoding |
HTTP charset parameter to use (default is |
silent |
whether to hide progress bar. Default is |
limit |
a positive integer for the maximum number of results to return.
See |
... |
other optional arguments listed in |
a data frame
In order to use SNOMED CT, a licence is required which depends both on the country you are based in, and the purpose of your work. See details on snomedizer.
Other wrapper:
concept_ancestors()
,
concept_descriptions()
,
release_version()
# Free text search str(concept_find("asthma")) # Retrieve multiple concepts concept_find(conceptIds = c("233604007", "68566005")) # Use the SNOMED CT Expression Constraint Language concept_find( ecl = paste( "<! 68566005 | Urinary tract infectious disease (disorder) |", "AND", "< 87628006 | Bacterial infectious disease (disorder) |" ) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.