#' Convert2Labels 
#' 
#' Converting list returned by CC-pivot to Labels
#'  
#' @param Instance Clustering instance returned by CC-pivot 
#' @param N Total number of elements 
#' 
Convert2Labels <- function(Instance, N){ 
  
  l <- length(Instance)
  
  Lab <- rep(0, N)
  
  for (i in 1:l){
    if(length(Instance[[i]])>0){
      Lab[Instance[[i]]] = i
    }
  }
  
  return(Lab)
  }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.