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
)Examples
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)
#> Warning: `stars_coglasso()` was deprecated in coglasso 1.1.0.
#> ℹ Please use `xstars()` instead.
# ->
sel_cg <- xstars(cg, verbose = FALSE)
# }
