knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Introduction

To support the safety analysis, it is quite common to define specific grouping of events. One of the most common ways is to group events or medications by a specific medical concept such as a Standard MedDRA Queries or WHO-Drug Standardized Drug Grouping.

To help with the derivation of these variables, the {admiral} function derive_vars_query() can be used. This function takes as input the dataset (dataset) where the grouping must occur (e.g ADAE) and a dataset containing the required information to perform the derivation of the grouping variables (dataset_queries).

Because the definition, collection and storage of the medical concepts is company specific, the dataset passed to the dataset_queries argument of the derive_vars_query() function should be created outside of {admiral} in a specific format so that it can be passed in the function.

This vignette describes the expected structure and content of the dataset passed to the dataset_queries argument in the derive_vars_query() function.

Structure of the Query Dataset

Variables

Variable | Scope | Type | Example Value ------- | ----- | ------ | ----- VAR_PREFIX | The prefix used to define the grouping variables | Character | "SMQ01" QUERY_NAME | The value provided to the grouping variables name| Character | "Immune-Mediated Guillain-Barre Syndrome" TERM_LEVEL | The variable used to define the grouping. Used in conjunction with TERM_NAME | Character | "AEDECOD" TERM_NAME | A term used to define the grouping. Used in conjunction with TERM_LEVEL | Character | "GUILLAIN-BARRE SYNDROME" TERM_ID | A code used to define the grouping. Used in conjunction with TERM_LEVEL | Integer | 10018767 QUERY_ID | Id number of the query. This could be a SMQ identifier | Integer | 20000131 QUERY_SCOPE | For SMQs, scope (Broad/Narrow) of the query | Character | BROAD, NARROW, NA QUERY_SCOPE_NUM | For SMQs, scope (Broad/Narrow) of the query | Integer | 1, 2, NA

Bold variables are required in dataset_queries: an error is issued if any of these variables is missing. Other variables are optional.

Required Content

Each row must be unique within the dataset.

As described above, the variables VAR_PREFIX, QUERY_NAME, TERM_LEVEL, TERM_NAME and TERM_ID are required. The combination of these variables will allow the creation of the grouping variable.

Input

Output

Example

In this example, one standard MedDRA query (VAR_PREFIX = "SMQ01") and one customized query (VAR_PREFIX = "CQ02") are defined to analyze the adverse events.

Query Dataset (ds_query)

VAR_PREFIX | QUERY_NAME | TERM_LEVEL | TERM_NAME | TERM_ID | ------- | ----- | ------ | ----- | ----- | ----- SMQ01| Standard Query 1 | AEDECOD | AE1 | SMQ01| Standard Query 1 | AEDECOD | AE2 | CQ02| Query 2 | AELLTCD | | 10 CQ02| Query 2 | AEDECOD | AE4|

Adverse Event Dataset (ae)

USUBJID | AEDECOD | AELLTCD ------- | ----- | ------ 0001 | AE1 | 101 | 0001 | AE3 | 10| | 0001 | AE4 | 120 | 0001 | AE5 | 130 |

Output Dataset

Generated by calling derive_vars_query(dataset = ae, dataset_queries = ds_query).

USUBJID | AEDECOD | AELLTCD | SMQ01NAM |CQ02NAM ------- | ----- | ------ | ----- | ----- 0001 | AE1 | 101 | Standard Query 1 | 0001 | AE3 | 10| | Query 2 0001 | AE4 | 120 | | Query 2 0001 | AE5 | 130 | |

Subject 0001 has one event meeting the Standard Query 1 criteria (AEDECOD = "AE1") and two events meeting the customized query (AELLTCD = 10 and AEDECOD = "AE4").

Optional Content

When standardized MedDRA Queries are added to the dataset, it is expected that the name of the query (ABCzzNAM) is populated along with its number code (ABCzzCD), and its Broad or Narrow scope (ABCzzSC).

The following variables can be added to queries_datset to derive this information.

Input

Output

Output Variables

These variables are optional and if not populated in dataset_queries, the corresponding output variable will not be created:

VAR_PREFIX | QUERY_NAME | QUERY_ID | QUERY_SCOPE |QUERY_SCOPE_NUM | Variables created ------- | ----- | ------ | ----- | ----- | ----- SMQ01| Query 1 | XXXXXXXX | NARROW | 2 | SMQ01NAM, SMQ01CD, SMQ01SC, SMQ01SCN SMQ02| Query 2 | XXXXXXXX |BROAD | | SMQ02NAM, SMQ02CD, SMQ02SC SMQ03| Query 3 | XXXXXXXX | |1 | SMQ03NAM, SMQ03CD, SMQ03SCN SMQ04| Query 4 | XXXXXXXX | | | SMQ04NAM, SMQ04CD SMQ05| Query 5| | | | SMQ05NAM



epijim/admiral documentation built on Feb. 13, 2022, 12:15 a.m.