Learn R Programming

coglasso (version 1.1.0)

stars_coglasso: Stability selection of the best coglasso network

Description

[Deprecated]

stars_coglasso() was deprecated in favor of xstars() as the function name does not reflect properly the method it implements. The new function also allows new memory-lighter and faster possibilities.

Usage

stars_coglasso(
  coglasso_obj,
  stars_thresh = 0.1,
  stars_subsample_ratio = NULL,
  rep_num = 20,
  max_iter = 10,
  verbose = FALSE
)

Arguments

Examples

Run this code
cg <- coglasso(multi_omics_sd_micro, p = c(4, 2), nlambda_w = 3, 
               nlambda_b = 3, nc = 3, verbose = FALSE)
# \donttest{
# Deprecated, use xstars() instead. Takes around one minute
sel_cg <- stars_coglasso(cg, verbose = FALSE)
# ->
sel_cg <- xstars(cg, verbose = FALSE)
# }

Run the code above in your browser using DataLab