연결선 수, 밀도 계산하기 :: R을 이용한 사회 연결망 분석 - mindscale
Skip to content

연결선 수, 밀도 계산하기

density (밀도)

graph.density(krack_full)

degree (연결선 수)

indegree

deg_full_in <- degree(krack_full, mode = 'in')

outdegree

deg_full_out <- degree(krack_full, mode = 'out')

연결선 수 분포

hist(deg_full_in, main = 'in-degree distribution')