SLIDE (Structural Learning and Integrative DEcomposition) is an R package that implements methods described in
To install from Github:
devtools::install_github("irinagain/SLIDE")
The main function is slide
, which fits SLIDE model to the multi-vew data. There are also several supporting functions. Each function has a documentation with a simple example which can be accessed using standard ? commands in R (i.e. ?slide
).
n = 25
p1 = 10
p2 = 10
data = generateModel1(n = n, pvec = c(p1, p2))
out_slide = slide(X = data$X, pvec = c(p1,p2))
out_slide$S