Revision 0d1b46ce56f99be7b8c9412c34b720b0794a8ce6 authored by Manuela Hummel on 03 March 2016, 20:29:17 UTC, committed by cran-robot on 03 March 2016, 20:29:17 UTC
0 parent
Raw File
dendro.subjects.R
dendro.subjects <-
function(data){  
#function(data, type=list()){  
# !! to be done: allow also asymmetric binary variables
  
  D.subjects <- dist.subjects(data)
  #D.subjects <- dist.subjects(data, type=type)
  as.dendrogram(hclust(D.subjects))
}
back to top