Clustering with relational constraint based on the class dist

March 9, 2018

# Clustering with relational constraint based on the class dist

listRel <- function(R){
  for(i in seq_along(R)) cat(names(R)[i],i,":",R[[i]],"\n")
}

relConD <- function(D,method="max",strategy="tolerant"){
  orDendro <- function(i){if(i<0) return(-i)
    return(c(orDendro(m[i,1]),orDendro(m[i,2])))}
  idx <- function(i,j) {if (i<j) return(n*(i-1) - i*(i-1)/2 + j-i) else
    return(n*(j-1) - j*(j-1)/2 + i-j)}
  if(strategy %in% c("tolerant", "leader", "strict")){
    tol <- strategy=="tolerant"; nos <- strategy!="strict"} else 
    {cat("*** Error - Unknown strategy:", strategy,"\n"); return(NULL)}
  cat("Clustering with relational constraint based on the class dist\n")
  cat("by Vladimir Batagelj, March 2018\n")
  cat("Method:",method,"  Strategy:",strategy,"\n")
  if(class(D)!="dist"){cat("*** Error - D should be of class dist\n"); return(NULL)}
  print(paste("Started:",Sys.time()))
# each unit is a cluster; compute inter-cluster dissimilarity matrix
  numL <- attr(D,"Size"); numLm <- numL-1
  active <- 1:numL; m <- matrix(nrow=numLm,ncol=2)
  node <- rep(0,numL); h <- numeric(numLm); w <- rep(1,numL)
  for(k in 1:numLm){
  # determine the closest pair of clusters (p,q)
    nn <- length(active); ind <- rep(Inf,nn); dd <- rep(Inf,nn)
    for(a in seq_along(active)) {i <- active[a]
    #  if((length(Ro[[i]])==1)&&(Ro[[i]][1]==0)) dd[a] <- Inf else
      for(j in Ro[[i]]) if((j>0)&&(i!=j)) if(D[idx(i,j)] < dd[[a]]) {dd[[a]] <- D[idx(i,j)]; ind[[a]] <- j}}
    pq <- which.min(dd)
    if((length(pq)==0)|is.null(pq)) break
    dpq <- dd[[pq]]
  # join the closest pair of clusters
    p<-active[pq]; q <- ind[pq]; 
    if(is.infinite(q)){
      cat("several components\n")
      dpq <- h[k-1]*1.1; p <- active[1]
      for(q in active[2:length(active)]){
        if(node[p]==0) m[k,1] <- -p else m[k,1] <- node[p]
        if(node[q]==0) m[k,2] <- -q else m[k,2] <- node[q]
        w[p] <- w[q]+w[p]; node[[k]] <- k; h[k] <- dpq
        p <- k; k <- k+1 
      }
      break
    }
    h[k] <- dpq 
    if(node[p]==0) m[k,1] <- -p else m[k,1] <- node[p]
    if(node[q]==0) m[k,2] <- -q else m[k,2] <- node[q]
    active <- setdiff(active,q)
    Rop <- setdiff(Ro[[p]],q); Rip <- setdiff(Ri[[p]],q) 
    Roq <- setdiff(Ro[[q]],p); Riq <- setdiff(Ri[[q]],p)
    for(s in Riq) if(s>0) Ro[[s]] <- setdiff(Ro[[s]],q)
    r <- p; Ror <- 0; Rir <- Rip
    if(tol) Ror <- Rop else
      for(s in Rop) if(s>0) Ri[[s]] <- setdiff(Ri[[s]],p) 
    Ror <- union(Ror,Roq)
    for(s in Roq) if(s>0) Ri[[s]] <- setdiff(union(Ri[[s]],r),q)
    if(nos){
      Rir <- union(Rir,Riq)
      for(s in Riq) if(s>0) Ro[[s]] <- union(Ro[[s]],r)
    }
    Ro[[r]] <- Ror; Ri[[r]] <- Rir; Ro[[q]] <- 0; Ri[[q]] <- 0
  # determine dissimilarities to the new cluster
    for(s in setdiff(active,p)){
      if(method=="max") D[idx(p,s)] <- max(D[idx(p,s)],D[idx(q,s)]) else
      if(method=="min") D[idx(p,s)] <- min(D[idx(p,s)],D[idx(q,s)]) else
      if(method=="ward") { ww <- w[p]+w[q]+w[s]
        D[idx(p,s)] <- ((w[q]+w[s])*D[idx(q,s)] + (w[p]+w[s])*D[idx(p,s)] - w[s]*dpq)/ww
      } else {cat('unknown method','\n'); return(NULL)}
    }
    w[p] <- w[q]+w[p]; node[[p]] <- k
  }
  hc <- list(merge=m,height=h,order=orDendro(numLm),labels=attr(D,"Labels"),
    method="cluRelD",call=NULL,dist.method=method,leaders=NULL)
  class(hc) <- "hclust"
  print(paste("Finished:",Sys.time()))
  return(hc)
}
> Ri <- sRi; Ro <- sRo; D <- sD
> DD <- as.dist(D); print(DD)
  a b c d e f g h i
b 5                
c 7 8              
d 4 1 4            
e 6 3 5 3          
f 6 4 7 2 6        
g 2 4 9 4 4 6      
h 4 5 3 8 6 8 4    
i 2 3 2 6 5 5 8 3  
j 3 4 5 3 7 7 2 4 5
> res <- relConD(DD,strategy="leader")
Clustering with relational constraint based on the class dist
by Vladimir Batagelj, March 2018
Method: max   Strategy: leader 
[1] "Started: 2018-03-12 04:06:36"
several components
[1] "Finished: 2018-03-12 04:06:36"
> plot(res,hang=-1,main="Some types ... example",sub="dist: leader / maximum")

pro/relc/dist.txt · Last modified: 2018/03/12 15:53 by vlado
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki