6.8 허브와 오쏘러티(Hubs and authorities)
Jon Kleinberg가 개발한 허브와 오쏘러티 알고리즘은 처음에 웹 페이지를 검토할 때 사용되었다. 허브(Hubs)는 대규모의 외부로 나가는 링크를 가지고 있는 목록들을 포함하고 있는 것으로 예상된다. 반면에 오쏘러티(Authorities)는 짐작하건대 고품질의 관련 정보를 담고있기 때문에 허브로 부터 들어오는 많은 링크를 가지고 있을 것으로 기대된다.
hs <- hub_score(net, weights=NA)$vector
as <- authority_score(net, weights=NA)$vector
par(mfrow=c(1,2))
plot(net, vertex.size=hs*50, main="Hubs")
plot(net, vertex.size=as*30, main="Authorities")
## null device
## 1