zoukankan      html  css  js  c++  java
  • Roles in graphs

    related website: Beyond Community Detection - RolXReFeX and RolX ; 

    What are roles?

    “Functions” of nodes in the network – Similar to functional roles of species in ecosystems

    • Measured by structural behaviors

    • Examples – centers of stars – members of cliques – peripheral nodes; bridges between groups; central connectors. 

    Why are roles important?

    roles of individual nodes can also be gleaned收集的 from the structure of the graph. Combined with community detection, role detection can add crucial insight when looking for key information such as:

    • Who are the most important, most connected figures - the “key influencers”?
    • Which members are highly connected to multiple close-knit communities, forming “bridges” in the network?
    • What distinguishes communities with almost no connections to the rest of the graph, from communities deeply embedded inside it?

    The analysis required to answer these questions is complementary to community detection

    Roles VS Communities:

    • Roles group nodes with similar structural properties

    • Communities group nodes that are wellconnected to each other

    • Roles and communities are complementary 

    the distance between two vertices in a graph is the number of edges in a shortest path connecting them. 

    the eccentricity epsilon (v) of a vertex v is the greatest distance between v and any other vertex; in symbols that is d(v,u)}{displaystyle epsilon (v)=max _{uin V}d(v,u)}.

    The radius r of a graph is the minimum eccentricity of any vertex.

    The diameter d of a graph is the maximum eccentricity of any vertex in the graph. To find the diameter of a graph, first find the shortest path between each pair of vertices. The greatest length of any of these paths is the diameter of the graph. 

  • 相关阅读:
    js数组合并
    火狐浏览器打开新标签不断刷新,怎么解决?
    python获取当前路径
    python模块os
    python模块sys
    python玩丢手绢问题,出局的顺序
    python list元素为dict时的排序
    利用等概率Rand5产生等概率Rand3(转)
    python垃圾回收机制(转)
    负数在计算机中如何表示?(转)
  • 原文地址:https://www.cnblogs.com/dulun/p/11914346.html
Copyright © 2011-2022 走看看