processRaw()The processRaw() function calculates actual counts \((N)\) of each product-symptom combination,
expected counts \((E)\) under the
row/column independence assumption, relative reporting ratio \((RR)\), and proportional reporting ratio
\((PRR)\).
Suppose the data look as so:
dat
#> var1 var2 id
#> 1 product_B event_1 1
#> 2 product_A event_1 2
#> 3 product_B event_2 3
#> 4 product_A event_1 4
#> 5 product_A event_1 5
#> 6 product_A event_1 6
#> 7 product_A event_2 7
#> 8 product_A event_2 8
#> 9 product_A event_1 9
#> 10 product_A event_2 10
#> 11 product_A event_2 11
#> 12 product_B event_2 12
#> 13 product_B event_1 13
#> 14 product_B event_2 14
#> 15 product_B event_1 15
#> 16 product_B event_2 16
#> 17 product_C event_1 17We can calculate \(N\), \(E\), \(RR\), and \(PRR\) for the product-symptom pairs:
processRaw(data = dat, stratify = FALSE, zeroes = FALSE)
#> var1 var2 N E RR PRR
#> 1 product_A event_1 5 4.7647059 1.05 1.11
#> 2 product_A event_2 4 4.2352941 0.94 0.89
#> 3 product_B event_1 3 3.7058824 0.81 0.71
#> 4 product_B event_2 4 3.2941176 1.21 1.43
#> 5 product_C event_1 1 0.5294118 1.89 2.00Stratification can help control for confounding variables. For instance, food and dietary supplements are sometimes consumed at different rates by different sexes. Similarly, adverse events associated with these products might occur with varying rates. Therefore, we might wish to control for this variable (and possibly others as well).
Now assume the data look as so:
dat
#> var1 var2 strat_sex id
#> 1 product_B event_1 F 1
#> 2 product_A event_1 M 2
#> 3 product_B event_2 M 3
#> 4 product_A event_1 M 4
#> 5 product_A event_1 F 5
#> 6 product_A event_1 F 6
#> 7 product_A event_2 F 7
#> 8 product_A event_2 F 8
#> 9 product_A event_1 M 9
#> 10 product_A event_2 M 10
#> 11 product_A event_2 M 11
#> 12 product_B event_2 M 12
#> 13 product_B event_1 M 13
#> 14 product_B event_2 M 14
#> 15 product_B event_1 M 15
#> 16 product_B event_2 F 16
#> 17 product_C event_1 M 17Notice that now we have a stratification variable (‘strat’ substring) present. We can use this variable to get adjusted estimates for the \(EBGM\) scores. Stratification will affect \(E\) and \(RR\), but not \(PRR\). The \(E\)s are calculated by summing the expected counts from every stratum. Ideally, each stratum should contain several unique CAERS reports to insure good estimates of \(E\).
processRaw(data = dat, stratify = TRUE, zeroes = FALSE)
#> stratification variables used: strat_sex
#> there were 2 strata: F, M
#> Warning in .checkStrata_processRaw(data, max_cats): at least one stratum
#> contains less than 50 unique IDs
#> var1 var2 N E RR PRR
#> 1 product_A event_1 5 4.7272727 1.06 1.11
#> 2 product_A event_2 4 4.2727273 0.94 0.89
#> 3 product_B event_1 3 3.7272727 0.80 0.71
#> 4 product_B event_2 4 3.2727273 1.22 1.43
#> 5 product_C event_1 1 0.5454545 1.83 2.00Notice that we use stratify = TRUE to accomodate the new
stratification variable(s). The calculations for \(E\) and \(RR\) are adjusted.
Finally, in some cases one may wish to calculate the \(E\)s for product-symptom combinations that
do not occur in the data. These can be calculated by using the
zeroes = TRUE argument in the processRaw()
function. It is typically not required to perform such calculations for
zero counts, and doing so can lead to much longer execution times when
estimating hyperparameters. For this reason, zero counts are only
recommended for hyperparameter estimation when convergence of
optimization routines cannot be reached otherwise. If zero counts are
used, data squashing (discussed in the next vignette) should typically
follow. (In fact, data squashing should almost always be used regardless
of whether or not zeroes are used.)
processRaw(data = dat, stratify = FALSE, zeroes = TRUE)
#> var1 var2 N E RR PRR
#> 1 product_A event_1 5 4.7647059 1.05 1.11
#> 2 product_A event_2 4 4.2352941 0.94 0.89
#> 3 product_B event_1 3 3.7058824 0.81 0.71
#> 4 product_B event_2 4 3.2941176 1.21 1.43
#> 5 product_C event_1 1 0.5294118 1.89 2.00
#> 6 product_C event_2 0 0.4705882 0.00 0.00Next, the Hyperparameter Estimation with openEBGM vignette will demonstrate how to estimate the hyperparameters of the prior distribution.