Skip to content
/ longHM Public

This package provides tools for high-dimensional mediation analysis in longitudinal studies.

License

Notifications You must be signed in to change notification settings

Cui-yd/longHM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

longHM

High-dimensional mediation analysis in longitudinal studies.

Workflow Overview

Installation

You can install the development version of longHM like so:

library(devtools)
install_github("Cui-yd/longHM")

Example

This is a basic example for two different methods: linear mixed-effects model based method and generalized estimating equation based method:

library(longHM)

data(example_lmm)
results_lmm = longMediation(Y = example_lmm$Y, X = example_lmm$X, M = example_lmm$M, 
                            COV = example_lmm$COV, id = example_lmm$id, 
                            wave = example_lmm$wave, topN = c(2,2), 
                            method = "lmm", verbose = TRUE)


data(example_gee)
results_gee = longMediation(Y = example_gee$Y, X = example_gee$X, M = example_gee$M,
                            COV = example_gee$COV, id = example_gee$id,
                            wave = example_gee$wave, topN = c(2,2), 
                            method = "gee", verbose = TRUE)

Please do not hesitate to contact me ([email protected]) if you meet any problem. Suggestions or comments are also welcome :D

About

This package provides tools for high-dimensional mediation analysis in longitudinal studies.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages