Description Usage Arguments Value Examples
Saves the search query. The query consists of keywords/UMLS concept unique identifiers (CUI's), boolean elements and other operators ('AND', 'OR', '!', '(', or ')').
1 2 3 4 5 6 7 8 9 10 11 12 | save_query(
uri_fun,
user,
password,
host,
port,
database,
search_query,
use_negation,
hide_duplicates,
skip_after_event
)
|
uri_fun |
Uniform resource identifier (URI) string generating function for MongoDB credentials. |
user |
MongoDB user name. |
password |
MongoDB user password. |
host |
MongoDB host server. |
port |
MongoDB port. |
database |
MongoDB database name. |
search_query |
Medical corpus query containg keywords/CUI's, boolean elements and other operators ('AND', 'OR', '!', '(', or ')'). |
use_negation |
Should negated items be ignored in the keyword/concept search? |
hide_duplicates |
Should duplicated sentences be removed for search results? |
skip_after_event |
Should sentences occurring after recorded clinical event be skipped? |
Confirmation that requested operation was completed, or error message if attempt failed.
1 2 3 4 5 6 | ## Not run:
save_query(uri_fun = mongo_uri_standard, user = 'John', password = 'db_password_1234',
host = 'server1234', port = NA, database = 'TEST_PROJECT', search_query = 'thrombosis AND venous',
use_negation = TRUE, hide_duplicates = TRUE, skip_after_event = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.