项目作者: Rmomal

项目描述 :
Meet nestor, an R package for the variational inference of species interaction networks from abundance data, while accounting for missing actors.
高级语言: R
项目地址: git://github.com/Rmomal/nestor.git
创建时间: 2020-07-20T12:31:57Z
项目社区:https://github.com/Rmomal/nestor

开源协议:Other

下载


nestor: Network inference from Species counTs with missing actORs.

Travis build status Codecov test coverage

nestor is an R package for the inference of species interaction networks from their observed abundances, while accounting for possible unobserved missing actors in the data. It is an implementation of the tree-based VEM algorithm described in the preprint http://arxiv.org/abs/2007.14299.

Installation

EMtree dependency

nestor uses functions from the R package EMtree which development version is available from GitHub

  1. devtools::install_github("Rmomal/EMtree")

CRAN dependencies

  1. required_CRAN <- c("utils", "stats", "ROCR","graphics", "mvtnorm", "parallel",
  2. "gridExtra", "reshape2" ,"ggplot2", "magrittr", "dplyr",
  3. "tidyr", "tibble", "blockmodels", "mclust", "PLNmodels")
  4. not_installed_CRAN <- setdiff(required_CRAN, rownames(installed.packages()))
  5. if (length(not_installed_CRAN) > 0) install.packages(not_installed_CRAN)

Installation of nestor

You can install the development version from GitHub with:

  1. devtools::install_github("Rmomal/nestor")