79
Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese University of Hong Kong June 4, 2012 I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 1 / 70

Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

  • Upload
    others

  • View
    6

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Social Network Analysis

Irwin King, Baichuan Li, Tom Chao Zhou

Department of Computer Science & EngineeringThe Chinese University of Hong Kong

June 4, 2012

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 1 / 70

Page 2: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 2 / 70

Page 3: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 3 / 70

Page 4: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 2 / 70

Page 5: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

The Web Is a Graph

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 3 / 70

Page 6: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

PageRank

Idea

Most web pages contain hyperlinks

Assign a score to each page to measure its importance (i.e.,PageRank value, usually between 0 and 1)

A web page propagate its PR through out-links, and absorb others’PRs through in-links

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 4 / 70

Page 7: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Teleport

What about the web pages without out-links (dead-ends)?

Random surfer: teleport

Jumps from a node to any other node in the web graphChoose the destination uniformly at random

E.g., let N is the total number of nodes in the web graph, the surfer toeach node has the probability of 1

N

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 5 / 70

Page 8: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Algorithm

If page A has pages {T1,T2, ...,Tn} which point to it, let Out(T1)denote the number of out-links of T1:

PR(A) = d · 1

N+ (1− d) · ( PR(T1)

Out(T1)+

PR(T2)

Out(T2)+ ...+

PR(Tn)

Out(Tn))

where d ∈ (0, 1) is a damping factor, N is the total number of webpages1N represnts the teleport operation

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 6 / 70

Page 9: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Transition Probability Matrix

Use a matrix P to represent the surfer probability from one node tothe other

Pij tells the probability that we visit node j of node i∀i , j ,Pij ∈ [0, 1]

∀i ,N∑j=1

Pij = 1

P =

0 0.25 0.25 0.25 0.251 0 0 0 00 0 0.5 0.5 00 0 0.5 0 0.50 0 0 1 0

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 7 / 70

Page 10: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Markov Chain

P is a transition probability matrix for a Markov chain

A Markov chain is a discrete-time stochastic processConsists of N statesThe Markov chain can be in one state i at any given time-step, andturn into state j in the next time-step with probability Pij

Probability vector ~π

Ergodic Markov Chain

A Markov chain is called an Ergodic chain if it is possible to go fromevery state to every state (non necessary in one move)

For any ergodic Markov chain, there is a unique steady-stateprobability vector ~π

~π is the principle left eigenvector of P with the largest eigenvaluePageRank=long-term visit rate=steady state probability

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 8 / 70

Page 11: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

How to Compute PageRank?

Compute PageRank iteratively

Let ~π be the initial probability vectorAt time t, the probability vector becomes ~πP t

When t is very large, ~πP t+1 = ~πP t , regardless of where we start (Theinitialization of ~π is unimportant)

Compute PageRank directly

~πP = 1 · P~π is the eigenvector of P whose corresponding eigenvalue is 1

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 9 / 70

Page 12: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Example

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 10 / 70

Page 13: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

PageRank in Information Retrieval

Preprocessing

Given graph of links, build matrix PApply teleportationFrom modified matrix, compute ~π~πi is the PageRank of page i .

Query processing

Retrieve pages satisfying the queryRank them by their PageRankReturn reranked list to the user

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 11 / 70

Page 14: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

PageRank Issues

Real surfers are not random surfers

Back buttons, bookmarks, directories – and search!

Simple PageRank ranking produces bad results for many pages

Consider the query [video service]The Yahoo home page (i) has a very high PageRank and (ii) containsboth video and service.According to PageRank, the Yahoo home page would be top-rankedClearly not desirable

In practice: rank according to weighted combination of raw textmatch, anchor text match, PageRank & other factors

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 12 / 70

Page 15: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Topic-Sensitive PageRank

Motivation

PageRank provides a general “importance” of a web page

The “importance” biased to different topics

Compute a set of “importance” scores of a page with respect tovarious topics

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 13 / 70

Page 16: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Standard PageRank

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 14 / 70

Page 17: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Topic-Sensitive PageRank

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 15 / 70

Page 18: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Phase 1: ODP-biasing

Generate a set of biased PageRank vectors using a set of basis topics

Cluster the Web page repository into a small number of clustersUtilize the hand constructed Open Directory

Performed offline, during preprocessing of crawled data

Let Tj be the set of URLs in the ODP category cj , we compute thedamping vector p = vj where

vji =

1

|T |i ∈ Tj

0 i /∈ Tj

The PageRank vector for topic cj is given by PR(α, vj).

Compute the 16 class term vectors Dj where Djt gives the number ofoccurrences of term t in documents of class cj .

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 16 / 70

Page 19: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis PageRank

Phase 2: Query-Time Importance Score

Performed at query time

Compute the class probabilities for each of the 16 top-level ODPclasses

P(cj |q′) =P(cj)P(q′|cj)

P(q′)∝ P(cj)ΠiP(q′i |cj)

Retrieve URLs for all documents containing the original query terms q

Compute the query-sensitive importance score of each of theseretrieved URLs

Sqd =∑j

P(cj |q′) · rjd ,

where rjd is the rank of document d given by the rank vector PR(α,vj).

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 17 / 70

Page 20: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 17 / 70

Page 21: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

HITS – Hyperlink-Induced Topic Search

Idea: Two different types of web pages on the web

Type 1: Authorities. An authority page provides direct answers to theinformation need

The home page of the Chicago Bulls sports team

Type 2: Hubs. A hub page contains a number of links to pagesanswering the information need

E.g., for query [chicago bulls]: Bob’s list of recommended resources onthe Chicago Bulls sports team

PageRank don’t make the distinction between these two

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 18 / 70

Page 22: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Definition of Hubs and Authorities

A good hub page for a topic links to many authority pages for thattopic

A good authority page for a topic is linked to by many hub pages forthat topic

Circular definition – Iterative computation

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 19 / 70

Page 23: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

One Example

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 20 / 70

Page 24: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

How to Compute Hub and Authority Scores

Do a regular web search first

Call the search result the root set

Find all pages that are linked to or link to pages in the root set

Call this larger set the base set

Finally, compute hubs and authorities for the base set

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 21 / 70

Page 25: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Root Set and Base Set

Base set:

Nodes that root set nodes linktoNodes that link to root setnodes

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 22 / 70

Page 26: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Hub and Authority Scores

Goal: compute for each page d in the base set a hub score h(d) andan authority score a(d)

Initialization: for all d : h(d) = 1, a(d) = 1

Iteratively update all h(d), a(d) until convergence

For all d : h(d) =∑

d 7→y a(y)For all d : a(d) =

∑y 7→d h(y)

After convergence:

Output pages with highest h scores as top hubsOutput pages with highest a scores as top authoritiesSo we output two ranked lists

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 23 / 70

Page 27: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Details

Scaling

To prevent the a() and h() values from getting too big, can scale downafter each iterationScaling factor doesn’t really matterWe care about the relative (as opposed to absolute) values of the scores

In most cases, the algorithm converges after a few iterations

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 24 / 70

Page 28: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Example: Authorities for query [Chicago Bulls]

0.85 www.nba.com/bulls0.25 www.essex1.com/people/jmiller/bulls.htm

“da Bulls”0.20 www.nando.net/SportServer/basketball/nba/chi.html

“The Chicago Bulls”0.15 users.aol.com/rynocub/bulls.htm

“The Chicago Bulls Home Page”0.13 www.geocities.com/Colosseum/6095

“Chicago Bulls”(Ben-Shaul et al, WWW8)

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 25 / 70

Page 29: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Example: Hubs for query [Chicago Bulls]

1.62 www.geocities.com/Colosseum/1778“Unbelieveabulls!!!!!”

1.24 www.webring.org/cgi-bin/webring?ring=chbulls“Erin’s Chicago Bulls Page”

0.74 www.geocities.com/Hollywood/Lot/3330/Bulls.html“Chicago Bulls”

0.52 www.nobull.net/web position/kw-search-15-M2.htm“Excite Search Results: bulls”

0.52 www.halcyon.com/wordsltd/bball/bulls.htm“Chicago Bulls Links”

(Ben-Shaul et al, WWW8)

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 26 / 70

Page 30: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Adjacency Matrix

We define an N × N adjacency matrix A

For 1 ≤ i , j ≤ N, the matrix entry Aij tells us whether there is a linkfrom page i to page j (Aij = 1) or not (Aij = 0)

d1 d2 d3

d1 0 1 0d2 1 1 1d3 1 0 0

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 27 / 70

Page 31: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Matrix Form of HITS

Define the hub vector ~h = (h1, . . . , hN) where hi is the hub score ofpage di

Similarly for ~a

h(d) =∑

d 7→y a(y): ~h = A~a

a(d) =∑

y 7→d h(y): ~a = AT~h

By substitution we get: ~h = AAT~h and ~a = ATA~a

Thus, ~h is an eigenvector of AAT and ~a is an eigenvector of ATA

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 28 / 70

Page 32: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Example

Table: Adjacent Matrix A

d0 d1 d2 d3 d4 d5 d6

d0 0 0 1 0 0 0 0d1 0 1 1 0 0 0 0d2 1 0 1 2 0 0 0d3 0 0 0 1 1 0 0d4 0 0 0 0 0 0 1d5 0 0 0 0 0 1 1d6 0 0 0 2 1 0 1

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 29 / 70

Page 33: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Hub Vectors

Set ~h0 uniformly~hi = 1

diA ·~ai , i ≥ 1

~h0~h1

~h2~h3

~h4~h5

d0 0.14 0.06 0.04 0.04 0.03 0.03d1 0.14 0.08 0.05 0.04 0.04 0.04d2 0.14 0.28 0.32 0.33 0.33 0.33d3 0.14 0.14 0.17 0.18 0.18 0.18d4 0.14 0.06 0.04 0.04 0.04 0.04d5 0.14 0.08 0.05 0.04 0.04 0.04d6 0.14 0.30 0.33 0.34 0.35 0.35

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 30 / 70

Page 34: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Authority Vectors

Set ~a0 uniformly

~ai = 1ciAT · ~hi−1, i ≥ 1

~a1 ~a2 ~a3 ~a4 ~a5 ~a6 ~a7

d0 0.06 0.09 0.10 0.10 0.10 0.10 0.10d1 0.06 0.03 0.01 0.01 0.01 0.01 0.01d2 0.19 0.14 0.13 0.12 0.12 0.12 0.12d3 0.31 0.43 0.46 0.46 0.46 0.47 0.47d4 0.13 0.14 0.16 0.16 0.16 0.16 0.16d5 0.06 0.03 0.02 0.01 0.01 0.01 0.01d6 0.19 0.14 0.13 0.13 0.13 0.13 0.13

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 31 / 70

Page 35: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

Top-ranked Pages

Pages with highest in-degree: d2, d3, d6

Pages with highest out-degree: d2, d6

Pages with highest PageRank: d6

Pages with highest hub score: d6 (close: d2)

Pages with highest authority score: d3

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 32 / 70

Page 36: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis HITS

PageRank vs. HITS

PageRank can be precomputed, HITS has to be computed at querytime

HITS is too expensive in most application scenarios.

PageRank and HITS are different in

the eigenproblem formalizationthe set of pages to apply the formalization to.

On the web, a good hub almost always is also a good authority.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 33 / 70

Page 37: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 33 / 70

Page 38: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

R Package for PageRank

Resources

Package: http://cran.r-project.org/web/packages/igraph/index.html

Function: http://igraph.sourceforge.net/doc/R/page.rank.html

Manual: http://cran.r-project.org/web/packages/igraph/igraph.pdf

Author: Tamas Nepusz and Gabor Csardi

Description

page.rank igraph: Calculates the Google PageRank for the specifiedvertices.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 34 / 70

Page 39: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 35 / 70

Page 40: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

How to use

Usage

page.rank (graph, vids = V(graph), directed = TRUE, damping = 0.85,weights = NULL, options = igraph.arpack.default)page.rank.old (graph, vids = V(graph), directed = TRUE, niter =1000,eps = 0.001, damping = 0.85, old = FALSE)

Value

For page.rank a named list with entries:

vector:A numeric vector with the PageRank scores.

value:The eigenvalue corresponding to the eigenvector with the pagerank scores. It should be always exactly one.

options:Some information about the underlying ARPACK calculation.See arpack for details.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 36 / 70

Page 41: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 37 / 70

Page 42: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

Example

Example

g = random.graph.game(20, 5/20, directed=TRUE)page.rank(g)g2 = graph.star(10)page.rank(g2)

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 38 / 70

Page 43: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

R Package for HITS

Resources

Package: http://cran.r-project.org/web/packages/igraph/index.html

Function: http://igraph.sourceforge.net/doc/R/kleinberg.html

Manual: http://cran.r-project.org/web/packages/igraph/igraph.pdf

Author: Gabor Csardi

Description

kleinberg igraph: Kleinberg’s hub and authority scores.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 39 / 70

Page 44: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 40 / 70

Page 45: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

How to use

Usage

authority.score (graph, scale = TRUE, options = igraph.arpack.default)hub.score (graph, scale = TRUE, options = igraph.arpack.default)

Value

For page.rank a named list with entries:

vector:The authority/hub scores of the vertices.

value:The corresponding eigenvalue of the calculated principaleigenvector.

options:Some information about the ARPACK computation, it has thesame members as the options member returned by arpack, see thatfor documentation.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 41 / 70

Page 46: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 42 / 70

Page 47: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Link Analysis Demo

Example

Example

An in-starg = graph.star(10)hub.score(g)authority.score(g)A ringg2 = graph.ring(10)hub.score(g2)authority.score(g2)

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 43 / 70

Page 48: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 44 / 70

Page 49: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Introduction

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 43 / 70

Page 50: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Introduction

Communities

Community

A community is formed by individuals such that those within a groupinteract with each other more frequently than with those outside thegroup.

Users form communities in social media

Community is formed through frequent interacting

A set of users who do not interact with each other is not a community

Why Communities Are Formed?

Human beings are social

Social media are easy to use

People’s social lives are easy to extend with the help of social media

People connect with friends, relatives, colleges, etc. in the physicalworld as well as online

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 44 / 70

Page 51: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Introduction

Examples of Communities

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 45 / 70

Page 52: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Introduction

Community Detection

Two Types of Users

1 Explicit Groups: Formed by user subscriptions

E.g., Groups in Facebook

2 Implicit Groups: implicitly formed by social interactions

E.g., Community question answering

Community Detection

Discovering groups in a network where individuals’ group memberships arenot explicitly given

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 46 / 70

Page 53: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 46 / 70

Page 54: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Approaches

Four categories

Node-centric approach

Each node in a group satisfies certain properties

Group-centric approach

Consider the connections inside a group as a whole

Network-centric approachPartition nodes of a network into several disjoint sets

Hierarchy-centric approach

Build a hierarchical structure of communities based on networktopology

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 47 / 70

Page 55: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Node-Centric Community Detection

Nodes satisfying certain properties within a groupComplete mutuality

cliques: A clique is a maximum complete subgraph in which all nodesare adjacent to each other

Reachability of members

k-clique: A k-clique is a maximal subgraph in which the largestgeodesic distance between any two nodes is no greater than kk-clan: The geodesic distance within the group to be no greater than k

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 48 / 70

Page 56: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Group-Centric Community Detection

Density-Based Groups

It is acceptable for some nodes to have low connectivity

The whole group satisfies a certain condition

E.g., the group density ≥ a given threshold

A subgraph Gs(Vs ,Es) is γ − dense (quasi-clique, Abello et al., 2002)if

Es

Vs(Vs − 1)/2≥ γ

Greedy search through recursive pruning

Local search: sample a subgraph and find a maximum γ − densequasi-clique (say, of size k)Heuristic pruning: remove nodes with degree less than k · γ

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 49 / 70

Page 57: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Network-Centric Community Detection

Consider the global topology of a network

Partition nodes of a network into disjoint sets

Optimize a criterion defined over a partition rather than over onegroup

Approaches:

Clustering based on vertex similarityLatent space models (multi-dimensional scaling)Block model approximationSpectral clusteringModularity maximization

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 50 / 70

Page 58: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Clustering Based on Vertex Similarity

Vertex similarity is defined in terms of the similarity of their socialcircles

Structural equivalence: two nodes are structurally equivalent iff theyare connecting to the same set of actors

Nodes 1 and 3 are structurally equivalent; So are nodes 5 and 6.Structural equivalence is too restrict for practical use

Apply k-means to find communities

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 51 / 70

Page 59: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Vertex Similarity Measurements

Cosine Similarity: Cosine(vi , vj) =|Ni

⋂Nj |√

|Ni |·|Nj |

Jaccard Similarity: Jaccard(vi , vj) =|Ni

⋂Nj |

|Ni⋃

Nj |

Cosine(4, 6) =1√4 · 4

=1

4

Jaccard(4, 6) =|{5}|

|{1, 3, 4, 5, 6, 7, 8}|=

1

7

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 52 / 70

Page 60: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Latent Space Models

Map nodes into a low-dimensional Euclidean space such that theproximity between nodes based on network connectivity are kept inthe new space

Multi-dimensional scaling (MDS)

Given a network, construct a proximity matrix P ∈ Rn×n representingthe pairwise distance between nodesLet S ∈ Rn×k denote the coordinates of nodes in the low-dimensionalspace

SST ≈ −1

2(I − 1

neeT )(P ◦ P)(I − 1

neeT ) = P,

where ◦ is the element-wise matrix multiplicationObjective: min ||SST − P||2FLet Λ = diag(λ1, ..., λk) (the top-k eigenvalues of P), V the top-keigenvectorsSolution: S = ΛV 1/2

Apply k-means to S to obtain communities

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 53 / 70

Page 61: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Example of MDS

Figure: From http://dmml.asu.edu/cdm/slides/chapter3.pdf

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 54 / 70

Page 62: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Block Model Approximation

Objective: Minimize the difference between an adjacency matrix anda block structure

minS,Σ||A− SΣST ||2F

where S ∈ {0, 1}n×k , and Σ ∈ Rk×k is diagonalChallenge: S is discrete, difficult to solveRelaxation: Allow S to be continuous satisfying STS = IkSolution: the top k eigenvectors of AApply k-means to S to obtain communities

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 55 / 70

Page 63: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Cut

Community detection → graph partition → minimum cut problemCut: A partition of vertices of a graph into two disjoint setsMinimum cut: Find a graph partition such that the number of edgesamong different sets is minimized

Minimum cut often returns an imbalanced partition, e.g., node 9Consider community size

Let Ci denote a community, |Ci | represent the number of nodes in Ci ,and vol(Ci ) measure the total degrees of nodes in Ci

RatioCut(π) =1

k

k∑i=1

cut(Ci , Ci )

|Ci |NormalizedCut(π) =

1

k

k∑i=1

cut(Ci , Ci )

vol(Ci )

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 56 / 70

Page 64: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Ratio Cut & Normalized Cut Example

For partition in red (π1)

RatioCut(π1) = 12 ( 1

1 + 18 ) = 0.56

NormalizedCut(π1) = 12 ( 1

1 + 127 ) = 0.52

For partition in green (π2)

RatioCut(π2) = 12 ( 2

4 + 25 ) = 0.45 < RatioCut(π1)

NormalizedCut(π2) = 12 ( 2

12 + 216 ) = 0.15 < NormalizedCut(π1)

Smaller values mean more balanced partition

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 57 / 70

Page 65: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Spectral Clustering

Finding the minimum ratio cut and normalized cut are NP-hard

An approximation is spectral clustering

minS∈{0,1}n×k

Tr(ST LS) s.t.,STS = Ik

L is the (normalized) Graph Laplacian

L = D − A

Normalized − L = I − D−1/2AD−1/2

D = diag{d1, d2, ..., dn}

Solution: S are the eigenvectors of L with smallest eigenvalues(except the first one)

Apply k-means to S to obtain communities

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 58 / 70

Page 66: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Spectral Clustering Example

Figure: From http://dmml.asu.edu/cdm/slides/chapter3.pdf

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 59 / 70

Page 67: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Modularity Maximization

Modularity measures the network interactions compared with theexpected random connectionsIn a network with m edges, for two nodes with degree di and dj , the

expected random connections aredidj2m

The expected number of edges between nodes 1 and 2 is3× 2/(2× 14) = 3/14

Strength of a community:∑

i∈C ,j∈C(Aij − didj/2m)

Modularity: Q =1

2m

∑C

∑i∈C ,j∈C

(Aij − didj/2m)

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 60 / 70

Page 68: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Matrix Formation

The modularity maximization can be reformed in the matrix form:

Q =1

2mTr(STBS)

B is the modularity matrix

Bij = Aij − didj/2m

Solution: top eigenvectors of the modularity matrix

Modularity: Q =1

2m

∑C

∑i∈C ,j∈C

(Aij − didj/2m)

Apply k-means to S to obtain communities

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 61 / 70

Page 69: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Modularity Maximization Example

Figure: From http://dmml.asu.edu/cdm/slides/chapter3.pdf

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 62 / 70

Page 70: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

A Unified Process

Goal of network-centric community detection: Partition networknodes into several disjoint sets

Limitation: The number of communities requires manual setting

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 63 / 70

Page 71: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Methods

Hierarchy-Centric Community Detection

Goal: Build a hierarchical structure of communities based on networktopology

Facilitate the analysis at different resolutions

Approaches:

Top-down: Divisive hierarchical clusteringBottom-up: Agglomerative hierarchical clustering

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 64 / 70

Page 72: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Summary

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 64 / 70

Page 73: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

Community Detection Summary

Summary

Goal: Discovering groups in a network where individuals’ groupmemberships are not explicitly given

ApproachesNode-centric approach

Each node in a group satisfies certain properties

Group-centric approach

Consider the connections inside a group as a whole

Network-centric approach

Partition nodes of a network into several disjoint sets

Hierarchy-centric approach

Build a hierarchical structure of communities based on networktopology

Which one to choose?

Scalability issue in real applicants

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 65 / 70

Page 74: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

References

Outline

1 Link AnalysisPageRank

Topic-Sensitive PageRank

HITSDemo

2 Community DetectionIntroductionMethods

Node-Centric Community DetectionGroup-Centric Community DetectionNetwork-Centric Community DetectionHierarchy-Centric Community Detection

Summary

3 References

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 66 / 70

Page 75: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

References

References

Christopher D. Manning, Prabhakar Raghavan, and Hinrich Schutze,An Introduction to Information Retrieval (Book), 2008.

Brin, S. and Page, L., The Anatomy of a Large-Scale HypertextualWeb Search Engine, 1998.

Jon M. Kleinberg, Authoritative sources in a hyperlinked environment,1999.

Taher H. Haveliwala, Topic-sensitive PageRank, 2002.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 66 / 70

Page 76: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

References

References

L. Tang and H. Li, Community Detection and Mining in Social Media(Book), 2010.

H. Liu, L. Tang, and N. Agarwal, Community Detection and BehaviorStudy for Social Computing (Tutorial), 2009.

R. Andersen and K. J. Lang, Communities from seed sets, WWW,2006:

S.Fortunato, Community detection in graphs, 2010.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 67 / 70

Page 77: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

References

References

D. Gibson, R. Kumar, and A. Tomkins, Discovering large densesubgraphs in massive graphs, VLDB, 2005.

M. S. Handcock, A. E. Raftery, and J. M. Tantrum, Model-basedclustering for social networks, 2007.

P. D. Hoff, A. E. Raftery, and M. S. Handcock, Latent spaceapproaches to social network analysis, 2002.

A. Java, A. Joshi, and T. Finin. Detecting Commmunities viaSimultaneous Clustering of Graphs and Folksonomies, WebKDD,2008.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 68 / 70

Page 78: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

References

References

R. Kumar, J. Novak, and A. Tomkins, Structure and evolution ofonline social networks, KDD, 2006.

Y.-R. Lin, Y. Chi, S. Zhu, H. Sundaram, and B. L. Tseng. Analyzingcommunities and their evolutions in dynamic social networks, TKDD,2009.

B. Long, Z.M. Zhang, X.Wu, and P. S. Yu, Spectral clustering formulti-type relational data, ICML, 2006.

B. Long, P. S. Yu, and Z.M. Zhang, A general model for multipleview unsupervised learning, SDM, 2008.

I. Borg and P. Groenen, Modern Multidimensional Scaling: theory andapplications (2nd ed.) (Book), 2005.

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 69 / 70

Page 79: Social Network Analysis - Chinese University of Hong Kong€¦ · Social Network Analysis Irwin King, Baichuan Li, Tom Chao Zhou Department of Computer Science & Engineering The Chinese

References

QA

Thanks for your attention!

I. King, B. Li, T. C. Zhou (CUHK) Social Network Analysis June 4, 2012 70 / 70