diff --git a/man/create_query_data.Rd b/man/create_query_data.Rd index 1f7ca894a2..4a6e14e02f 100644 --- a/man/create_query_data.Rd +++ b/man/create_query_data.Rd @@ -108,7 +108,7 @@ specified, the variable is not created. \examples{ library(tibble) library(dplyr, warn.conflicts = FALSE) -library(admiral.test) +library(pharmaversesdtm) library(admiral) # creating a query dataset for a customized query @@ -147,11 +147,11 @@ bilismq <- query( ) ) -# The get_terms function from admiral.test is used for this example. +# The get_terms function from pharmaversesdtm is used for this example. # In a real application a company-specific function must be used. create_query_data( queries = list(pregsmq, bilismq), - get_terms_fun = admiral.test:::get_terms, + get_terms_fun = pharmaversesdtm:::get_terms, version = "20.1" ) @@ -166,16 +166,16 @@ sdg <- query( ) ) -# The get_terms function from admiral.test is used for this example. +# The get_terms function from pharmaversesdtm is used for this example. # In a real application a company-specific function must be used. create_query_data( queries = list(sdg), - get_terms_fun = admiral.test:::get_terms, + get_terms_fun = pharmaversesdtm:::get_terms, version = "2019-09" ) # creating a query dataset for a customized query including SMQs -# The get_terms function from admiral.test is used for this example. +# The get_terms function from pharmaversesdtm is used for this example. # In a real application a company-specific function must be used. create_query_data( queries = list( @@ -192,7 +192,7 @@ create_query_data( ) ) ), - get_terms_fun = admiral.test:::get_terms, + get_terms_fun = pharmaversesdtm:::get_terms, version = "20.1" ) }