NOTE –> This is a fork from the original confMeta package. In this some bugs from previous package are fixed, and also p_edgington_w is added giving the possibility to use weights with the edgington combination method
The confMeta package implements methods related to
meta-analysis. The functions that confMeta provides, can be
categorized roughly into three categories:
confMeta and a plot method for itCurrently, the package is developed on Github. Thus, the
easiest way to install it is via the remotes package. If
the remotes package is not installed, you can run the
following line of code to do so.
install.packages("remotes")Once remotes has been installed, you can install
confMeta by running
remotes::install_github("SaveFonta/confMeta")Once installed, the package can be used by loading it into the
R session. This can be achieved by running
library(confMeta)Consider the hypothetical scenario where we have n = 3 individual studies that should be combined into a single confidence interval using a confidence level of 1 - alpha = 0.95. We can simulate these by running the following code
n <- 3
conf_level <- 0.95
estimates <- rnorm(n)
SEs <- rgamma(n, 5, 5)Here, the object estimates contains the individual study
estimates, whereas the object SEs contains the
corresponding standard errors.
With these individual studies, a confMeta object can be
created. However, this requires the specification of a p-value
function, i.e. a method, that takes the individual studies (argument
estimates), their standard errors (argument
SEs), and the mean under the null-hypothesis (argument
mu) as input and returns the corresponding p-value
at the specified mean value. The confMeta package provides
implementations for the following p-value functions
p_hmean)p_wilkinson)p_pearson)p_edgington)p_fisher)p_tippett)In this example, we choose Edgington’s method. Thus, we can create
the confMeta object as follows
cm <- confMeta(
estimates = estimates,
SEs = SEs,
conf_level = conf_level,
fun = p_edgington,
fun_name = "Edgington"
)As the variable cm now contains the
confMeta object, we can inspect it by running the following
code
# See what elements it has
names(cm)
# Check out the combined confidence interval(s)
cm$joint_cisThe package also contains an autoplot method that can be
used to visualize the p-value function. The documentation for
this function can be inspected by running
?autoplot.confMetaThe method provides essentially two plots, one showing the
p-value function and one constructing a forest plot. Which one
is returned can be specified using the type argument.
# show the p-value function
autoplot(cm, type = "p")
# show the forest plot
autoplot(cm, type = "forest")
# show both
autoplot(cm, type = c("p", "forest"))You can also compare different p-value functions with each
other. In order to illustrate how this works, we need a second
confMeta object, that uses a different p-value
function.
cm2 <- confMeta(
estimates = estimates,
SEs = SEs,
conf_level = conf_level,
fun = p_fisher,
fun_name = "Fisher"
)Now, we can compare the two p-value functions to each other in the following way
# show the p-value function
autoplot(cm, cm2, type = "p")
# show the forest plot
autoplot(cm, cm2, type = "forest")
# show both
autoplot(cm, cm2, type = c("p", "forest"))