irinagain / SLIDE

R package SLIDE for Structural Learning and Integrative Decomposition of Multi-View Data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

R package SLIDE for Structural Learning and Integrative Decomposition of Multi-View Data

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).

Example

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

About

R package SLIDE for Structural Learning and Integrative Decomposition of Multi-View Data


Languages

Language:R 80.3%Language:C++ 19.7%