README.md

Automated biomarker analysis

R-CMD-check Codecov test
coverage

The goals of the aba package are the following:

overview image

With the aba package, it becomes easier to fit statistical models on permuatations of covariates / predictors / outcomes / groups, to make it easier to investigate how biomarkers can be used to plan (screening / enirichment) and analyze clinical trials, and to facilitate multi-cohort validation studies when data cannot be easily shared between collaborators.

Getting started

To view tutorials and examples of how to use the package, you can visit the package website at https://ncullen93.github.io/abaR/.

You can install the development version of the aba package from GitHub with the following:

# install.packages("devtools")
devtools::install_github("ncullen93/abaR")

The general workflow of fitting an aba model for statistical analysis looks like this:

library(aba)

df <- aba::adnimerge %>% filter(VISCODE == 'bl')

model_spec <- df %>% aba_model() %>%
  set_groups(everyone()) %>%
  set_outcomes(ConvertedToAlzheimers, CSF_ABETA_STATUS_bl) %>%
  set_predictors(
    PLASMA_ABETA_bl,
    PLASMA_PTAU181_bl,
    PLASMA_NFL_bl,
    c(PLASMA_ABETA_bl, PLASMA_PTAU181_bl, PLASMA_NFL_bl)
  ) %>%
  set_stats(
    stat_glm(std.beta=T)
  )

model_fit <- model_spec %>% fit()
model_summary <- model_fit %>% summary()

Publications

Some publications whose analysis has been done partially or completely with functions from the aba package are featured here:

Cite

If you use the aba package in your work, we appreciate if you cite us. An example statement which can be added at the end of the “Statistical analysis” section of your methods is provided here:

The analysis was done in the R programming language (v4.0.3) using the Automated Biomarker Analysis for R (“aba”) package [citation].

Receiving help

The easiest way to get help is to create an issue on the github page or to send us an email with your questions.



Try the aba package in your browser

Any scripts or data that you put into this service are public.

aba documentation built on Dec. 17, 2021, 1:06 a.m.