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. 

  • 相关阅读:
    Python:Day02
    Python:Day01
    学习Python的第二天
    学习Python的第一天
    MySQL插入中文数据乱码问题
    MySQL数据库应用(11)DML之表和字段
    MySQL数据库应用(10)DML之修改表中的记录
    MySQL数据实战(初步增量恢复)
    MySQL数据库应用(9)DQL之select知识
    MySQL数据库应用(8)DML语句之insert知识
  • 原文地址:https://www.cnblogs.com/dulun/p/11914346.html
Copyright © 2011-2022 走看看