mr {epigraphdb} | R Documentation |
Return information related to Mendelian Randomisation
Description
Usage
mr(
exposure_trait = NULL,
outcome_trait = NULL,
pval_threshold = 1e-05,
mode = c("table", "raw")
)
Arguments
exposure_trait |
A trait name, e.g. "Body mass index",
leaving |
outcome_trait |
A trait name, e.g. "Coronary heart disease",
leaving |
pval_threshold |
P-value threshold |
mode |
If |
Value
Data from GET /mr
Examples
# Returns a data frame
## Not run:
mr(exposure_trait = "Body mass index", outcome_trait = "Coronary heart disease")
## End(Not run)
# Returns raw response
## Not run:
mr(
exposure_trait = "Body mass index", outcome_trait = "Coronary heart disease",
mode = "raw"
) %>% str()
## End(Not run)
# Use a different threshold
## Not run:
mr(exposure_trait = "Body mass index", pval_threshold = 1e-8)
## End(Not run)
[Package epigraphdb version 0.2.3 Index]