Nothing
#' Symmetric core-cohesive blockmodel
#'
#' @description Symmetric core-cohesive blockmodel.
#' @param nbl Number of clusters.
#' @author Marjan Cugmas
#' @export
ccps <- function (nbl) {
B.new <- array(NA, dim = c(1, 1, nbl, nbl))
B.new[1, 1, , ] <- matrix("null", nrow = nbl, ncol = nbl)
diag(B.new[1, 1, , ]) <- "com"
B.new[1, 1, , ][, 1] <- "com"
B.new[1, 1, , ][1, ] <- "com"
return(B.new)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.