1 / 12

Cluster Analysis

Cluster Analysis. Market Segmentation Document Similarity. Segment Members. Segment Members. = 64. Biz. Math. Tech. Main Groups. Hierarchical Clustering.

hesper
Télécharger la présentation

Cluster Analysis

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Cluster Analysis • Market Segmentation • Document Similarity

  2. Segment Members

  3. Segment Members = 64 Biz Math Tech Main Groups

  4. Hierarchical Clustering • Each object is assigned to its own cluster and then the algorithm proceeds iteratively, at each stage joining the two most similar clusters, continuing until there is just a single cluster. • At each stage distances between clusters are recomputed by the Lance–Williams dissimilarity update formula according to the particular clustering method being used.

  5. Hierarchical Clustering biztech <- read.csv("survey-biztech.csv") biztech <- as.matrix(biztech) #hierarchical clustering d <- dist(as.matrix(biztech)) dm <- data.matrix(d) write.csv(dm, "distance_matrix.csv")

  6. hc <- hclust(d) plot(hc) rect.hclust(hc, k=6, border="red")

  7. Hierarchical Clustering ct <- cutree(hc, k=6) #write to file write.csv(ct, "survey-hclust.csv")

  8. hierarchical clustering is very expensive in terms of time complexity • though it provides better result

  9. Cold Weather

More Related