MyNixOS website logo
Description

Dose-Response Meta-Regression for Meta-Analysis.

Conducting linear and nonlinear dose-response meta-regression using study-level summary data. It supports both continuous and binary outcomes and allows modeling of dose-effect relationships using linear trends or nonlinear restricted cubic splines. The package is designed to facilitate transparent, flexible, and reproducible dose-response meta-analyses, with built-in visualization of fitted dose-response curves.

MetaDose

Linear and Nonlinear Dose-Response Meta-Regression

Overview

MetaDose provides a suite of functions to perform linear and nonlinear dose-response meta-regression on study-level data. It supports both continuous (mdcont()) and binary (mdbin()) outcomes, with visualization and S3 methods for easy inspection of results.

The workflow is:

  1. Model: Use mdcont() for continuous outcomes or mdbin() for binary outcomes to estimate linear or nonlinear dose-response relationships, including restricted cubic spline modeling.
  2. Visualize: Use the returned dose object’s plot() method to generate publication-ready dose-response plots, and print() to inspect the model summaries.
  3. Interact: For users who prefer a graphical interface, MetaDose provides an interactive Shiny application. The app allows uploading data, performing linear or nonlinear dose-response meta-regression, and visualizing results without writing R code.

The Shiny app is hosted online and can be accessed here: MetaDose Shiny App

This approach helps researchers understand the relationship between dose and outcome in a meta-analytic context, providing both numerical and graphical summaries.


Installation

Install the development version of MetaDose from GitHub with:

# install.packages("remotes")
remotes::install_github("asmpro7/MetaDose")

Example Usage

Continuous Outcome Example

# Perform linear and nonlinear dose-response meta-regression
cont_results <- mdcont(
  data = study_data,
  mean.e = mean_e,
  sd.e = sd_e,
  n.e = n_e,
  mean.c = mean_c,
  sd.c = sd_c,
  n.c = n_c,
  dose = dose,
  measure = "MD"
)

# Print both linear and nonlinear model summaries
print(cont_results, model = "both")

# Plot the dose-response curves
plot(cont_results, model = "both")

Binary Outcome Example

# Perform linear and nonlinear dose-response meta-regression
bin_results <- mdbin(
  data = study_data,
  event.e = event_e,
  n.e = n_e,
  event.c = event_c,
  n.c = n_c,
  dose = dose,
  measure = "RR"
)

# Print model summaries
print(bin_results, model = "both")

# Plot the dose-response curves
plot(bin_results, model = "both")

Metadata

Version

1.0.1

License

Unknown

Platforms (78)

    Darwin
    FreeBSD
    Genode
    GHCJS
    Linux
    MMIXware
    NetBSD
    none
    OpenBSD
    Redox
    Solaris
    uefi
    WASI
    Windows
Show all
  • aarch64-darwin
  • aarch64-freebsd
  • aarch64-genode
  • aarch64-linux
  • aarch64-netbsd
  • aarch64-none
  • aarch64-uefi
  • aarch64-windows
  • aarch64_be-none
  • arm-none
  • armv5tel-linux
  • armv6l-linux
  • armv6l-netbsd
  • armv6l-none
  • armv7a-linux
  • armv7a-netbsd
  • armv7l-linux
  • armv7l-netbsd
  • avr-none
  • i686-cygwin
  • i686-freebsd
  • i686-genode
  • i686-linux
  • i686-netbsd
  • i686-none
  • i686-openbsd
  • i686-windows
  • javascript-ghcjs
  • loongarch64-linux
  • m68k-linux
  • m68k-netbsd
  • m68k-none
  • microblaze-linux
  • microblaze-none
  • microblazeel-linux
  • microblazeel-none
  • mips-linux
  • mips-none
  • mips64-linux
  • mips64-none
  • mips64el-linux
  • mipsel-linux
  • mipsel-netbsd
  • mmix-mmixware
  • msp430-none
  • or1k-none
  • powerpc-linux
  • powerpc-netbsd
  • powerpc-none
  • powerpc64-linux
  • powerpc64le-linux
  • powerpcle-none
  • riscv32-linux
  • riscv32-netbsd
  • riscv32-none
  • riscv64-linux
  • riscv64-netbsd
  • riscv64-none
  • rx-none
  • s390-linux
  • s390-none
  • s390x-linux
  • s390x-none
  • vc4-none
  • wasm32-wasi
  • wasm64-wasi
  • x86_64-cygwin
  • x86_64-darwin
  • x86_64-freebsd
  • x86_64-genode
  • x86_64-linux
  • x86_64-netbsd
  • x86_64-none
  • x86_64-openbsd
  • x86_64-redox
  • x86_64-solaris
  • x86_64-uefi
  • x86_64-windows