Learn R Programming

epigraphdb (version 0.2.3)

genetic_cor: Genetic correlations between traits

Description

GET /genetic-cor

Usage

genetic_cor(trait, cor_coef_threshold = 0.8, mode = c("table", "raw"))

Arguments

trait

name of the trait, e.g. "body mass index"

cor_coef_threshold

correlation coefficient threshold

mode

If mode = "table", returns a data frame (a tibble as per tidyverse convention). If mode = "raw", returns a raw response from EpiGraphDB API with minimal parsing done by httr.

Value

Data from GET /genetic_cor

Examples

Run this code
# NOT RUN {
genetic_cor(trait = "Body mass index") %>%
  dplyr::glimpse()
# }
# NOT RUN {
# Use a different threshold
# }
# NOT RUN {
genetic_cor(trait = "Body mass index", cor_coef_threshold = 0.4) %>%
  dplyr::glimpse()
# }

Run the code above in your browser using DataLab