week 8 Flashcards
distance
length of shortest path
eccentricity
maximum distance to any other vertex
radius
minimum eccentricity of any vertex
diameter
maximum eccentricity of any vertex
effective diameter
smallest number greater than the maximum eccentricity of any vertex of a large fraction of the graph
small world property of a graph
average path length scales logarithmically
scale free property of a graph
the degree distribution of the graph follows a power law
zooming in on any part of the degree distribution yields the same power law
centrality
degree centrality
eccentricity centrality = least eccentric vertex is the most central one, minimize maximum distance
closeness centrality = minimize average distance
betweenness centrality
number of shortest paths that travel through x
edges with high betweenness are called weak ties
how to compute:
0.BFS
1.each label gets assigned how many parents it has
2.each leaf gets a credit of 1
3.each non-leaf gets credit of 1 + credit of each child / nr of parents computed in 1st step
4.repeat this for each node (each node gets to be parent)
5.divide final credits by 2
6.highest credits = weak links
spectral clustering
laplacian matrix = degree matrix - adjacency matrix
compute eigenvectors/values of laplacian matrix, split into clusters based on highest eigenvalue
if more than 1 cluster => recursive (above) / cluster multiple eigenvectors