Description Usage See Also Examples
Get random rows from the Concept table without any additional filters.
1 2 3 4 5 6 7 8 | get_test_concepts(
conn,
conn_fun = "connectAthena()",
schema = "omop_vocabulary",
limit = 100,
verbose = TRUE,
render_sql = TRUE
)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | library(chariot)
library(tidyverse)
# Get Unfiltered Test Concepts (Invalid Concepts are included)
get_test_concepts()
# The size of the resultset can be altered
get_test_concepts(limit = 25)
# Concepts specific to the Drug domain can be sampled
# RxNorm/RxNorm Extension Concepts
get_test_drug_concepts(limit = 10)
# HemOnc/ATC Classes
get_test_drug_classes(limit = 10)
# Test data can also be taken from tables other than Concept
get_test_data(table = "concept_relationship")
get_test_data(table = "concept_ancestor", limit = 10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.