The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

interep

Interaction Analysis of Repeated Measure Data

Travis build status CRAN status Codecov test coverage

Extensive penalized variable selection methods have been developed in the past two decades for analyzing high dimensional omics data, such as gene expressions, single nucleotide polymorphisms (SNPs), copy number variations (CNVs) and others. However, lipidomics data have been rarely investigated by using high dimensional variable selection methods. This package incorporates our recently developed penalization procedures to conduct interaction analysis for high dimensional lipidomics data with repeated measurements. The core module of this package is developed in C++. The development of this software package and the associated statistical methods have been partially supported by an Innovative Research Award from Johnson Cancer Research Center, Kansas State University.

How to install

install.packages("interep")

Example

library(interep)
data("dat")
## Load the environment factors, lipid factors and the response
e=dat$e
g=dat$z
y=dat$y
## Initial value for the coefficient vector
beta0=dat$coef
## True nonzero coefficients
index=dat$index
b = interep(e, g, y,beta0,corre="e",pmethod="mixed",lam1=dat$lam1, lam2=dat$lam2,maxits=30)
## Cut off the noise
b[abs(b)<0.05]=0
## Compute TP and FP
pos = which(b != 0)
tp = length(intersect(index, pos))
fp = length(pos) - tp
list(tp=tp, fp=fp)

Methods

This package provides implementation for methods proposed in

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.