To install RadialMR
directly from the GitHub repository, first make sure you have the devtools
package installed:
install.packages("devtools")
Then the RadialMR
package can be installed using:
library(devtools)
install_github("WSpiller/RadialMR")
To update the package just run the install_github("WSpiller/RadialMR")
command again.
We have written the RadialMR
R package to produce radial plots and to perform radial
regression for inverse variance weighted and MR-Egger regression models. The package contains a total of four functions:
-
The
format_radial
function is used to convert a data frame containing summary data into a set format for radial analyses. -
The
ivw_radial
function fits a radial inverse variance weighted (IVW) model using either first order, second order, or modified second order weights. It provides an effect estimate and allows for outliers to be identified using Cochran's Q-statistic. This function now also includes iterative and exact IVW estimation, as described in: Improving the accuracy of two-sample summary data Mendelian randomization: moving beyond the NOME assumption(https://www.biorxiv.org/content/early/2018/07/02/159442). -
The
egger_radial
function fits a radial MR-Egger model using either first order, second order, or modified second order weights. It provides an effect estimate and allows for outliers to be identified using Rucker's Q-statistic. -
The
plotly_radial
function produces interactive radial plots corresponding to the output of theivw_radial
andegger_radial
functions. -
The
plot_radial
function produces a radial plot corresponding to the output of theivw_radial
andegger_radial
functions. The function provides a range of scaling and aesthetic options showing either an IVW estimate, MR-Egger estimate, or both estimates simultaneously. -
The
funnel_radial
function produces generalized radial IVW and MR-Egger funnel plots either individually or simultaneously corresponding to the output of theivw_radial
andegger_radial
functions. The function also allows for lines indicating the magnitude for the MR Egger transformation for each variant, though it should be noted that this distance is a function of the weight attributed to the variant, and is therefore not indicative of outliers.
Radial plots are produced by many existing R packages such as metafor
, numOSL
, and Luminescence
. Care will need to be taken, however, to input data from an
MR-analysis appropriately into these generic platforms. For this reason we will also continue to develop our own RadialMR
package to produce radial plots and conduct
radial plot regression for the MR-setting.
The paper has been published in the International Journal of Epidemiology:
[Bowden, J., et al., Improving the visualization, interpretation and analysis of two-sample summary data Mendelian randomization via the Radial plot and Radial regression. International Journal of Epidemiology, 2018. 47(4): p. 1264-1278.] (https://academic.oup.com/ije/article/47/4/1264/5046668)
This project is licensed under GNU GPL v3.