Structural Insights into Mapper1D Output and Clustering in RStudio

data structure of mapper1d output n.w
1 / 21
Embed
Share

Discover the data structure of Mapper1D output in RStudio, generated using m1datastructureLecture.r script. Explore adjacency matrices, vertex levels, and point distributions. Learn about cluster cutoffs, bin analysis, and hierarchical clustering methods. Visualize data points and understand bin characteristics for effective clustering. Gain valuable insights into data analysis and visualization techniques.

  • Data Structure
  • Mapper1D
  • RStudio
  • Clustering
  • Visualizations

Uploaded on | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. Data structure of mapper1D output. From upper right corner of Rstudio Created using m1datastructureLecture.r

  2. > m1 $adjacency [,1] [,2] [,3] [,4] [1,] 0 0 0 0 [2,] 0 0 0 0 [3,] 0 0 0 0 [4,] 0 0 0 0 $num_vertices [1] 4 $level_of_vertex [1] 1 3 3 5

  3. $points_in_vertex $points_in_vertex[[1]] [1] 1 $points_in_vertex[[2]] [1] 2 3 $points_in_vertex[[3]] [1] NA $points_in_vertex[[4]] [1] 4

  4. cluster_cutoff_at_first_empty_bin.r

  5. num_bins_when_clustering = ??? Figure courtesy of Paul Samuel Ignacio

  6. cluster_cutoff_at_first_empty_bin.r

  7. > hc <-hclust(dist(DataSet), method="single")

  8. Bin with 2 points

  9. For entire data set of 4 points For middle bin with 2 points Diam = ((3-1)2 + (9-1)2 )1/2 Diam = 9-1 = 8

  10. Suppose bin consists of these 4 points Diam = ((3-1)2 + (9-1)2 )1/2

  11. num_bins_when_clustering = ??? Figure courtesy of Steve Oudet

  12. Different type of hierarchical clustering What is the distance between 2 clusters? http://www.multid.se/genex/hs515.htm http://en.wikipedia.org/wiki/File:Hiera rchical_clustering_simple_diagram.svg

  13. http://statweb.stanford.edu/~tibs/ElemStatLearn/ The Elements of Statistical Learning (2nd edition) Hastie, Tibshirani and Friedman

More Related Content