Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

v5.0
Search
    English
    v5.0

      Degree Centrality

      HDC Distributed

      Overview

      The Degree Centrality algorithm is used to find important nodes in the network, it measures the number of incoming and/or outgoing edges incident to the node, or the sum of weights of those edges. Degree is the simplest and most efficient graph algorithm since it only considers the 1-hop neighborhood of nodes. Degree plays a vital role in scientific computing, feature extraction, supernode recognition and other fields.

      Concepts

      In-Degree and Out-Degree

      The number of incoming edges a node has is called its in-degree; accordingly, the number of outgoing edges is called out-degree. If ignores edge direction, it is degree.

      In this graph, the red node has in-degree of 4 and out-degree of 3, and its degree is 7. Directed self-loop is regarded as an incoming edge and an outgoing edge.

      Weighted Degree

      In many applications, each edge of a graph has an associated numeric value, called weight. In weighted graph, weighted degree of a node is the sum of weights of all its neighbor edges. Unweighted degree is equivalent to when all edge weights are 1.

      In this weighted graph, the red node has weighted in-degree of 0.5 + 0.3 + 2 + 1 = 3.8 and weighted out-degree of 1 + 0.2 + 2 = 3.2, and its weighted degree is 3.2 + 3.8 = 7.

      Considerations

      • Degree of isolated node only depends on its self-loop. If it has no self-loop, degree is 0.
      • Every self-loop is counted as two edges attaching to its node. Directed self-loop is viewed as an incoming edge and an outgoing edge.

      Parameters

      Name
      Type
      Spec
      Default
      Optional
      Description
      Dist. Projections Supported
      project String / / / The projection on which the algorithm will run. This is required for writeback modes but not applicable to return modes. Yes
      ids []_id / / Yes Specifies nodes by their _id values for computation; computes for all nodes if it is unset. Yes
      uuids []_uuid / / Yes Specifies nodes by their _uuid values for computation; computes for all nodes if it is unset. No
      edge_schema_property []@<schema?>.<property> / / Yes Numeric edge properties used to compute weighted degrees, summing values across the specified properties; edges without these properties are disregarded. Yes
      direction String in, out / Yes Specifies in for in-degrees, out for out-degrees; leaves unset for general degree computation. Yes
      return_id_uuid String uuid, id, both uuid Yes Includes _uuid, _id, or both values for nodes in the results. No
      limit Integer ≥-1 -1 Yes Limits the number of results returned; -1 includes all results. No
      order String asc, desc / Yes Sorts nodes by their degrees. Yes

      Example Graph

      To create this graph:

      // Runs each row separately in order in an empty graphset
      create().node_schema("user").edge_schema("follow")
      create().edge_property(@follow, "score", float)
      insert().into(@user).nodes([{_id:"Mike"},{_id:"Cathy"},{_id:"Anna"},{_id:"Joe"},{_id:"Sam"},{_id:"Bob"},{_id:"Bill"},{_id:"Tim"}])
      insert().into(@follow).edges([{_from:"Mike", _to:"Cathy", score:1.9}, {_from:"Cathy", _to:"Mike", score:1.8}, {_from:"Mike", _to:"Anna", score:1.2},{_from:"Cathy", _to:"Anna", score:2.6},{_from:"Cathy", _to:"Joe", score:0.2},{_from:"Joe", _to:"Anna", score:4.2},{_from:"Bob", _to:"Joe", score:1.7},{_from:"Sam", _to:"Bob", score:3.5},{_from:"Sam", _to:"Anna", score:0.8},{_from:"Bill", _to:"Anna", score:2.3}])
      

      Running on HDC Projections

      Creating HDC Projections

      To project the entire graph to the HDC server hdc-server-1 as hdc_degree:

      hdc.graph.create("hdc_degree", {
        nodes: {"*": ["*"]},
        edges: {"*": ["*"]},
        direction: "undirected",
        load_id: true,
        update: "static",
        query: "query",
        default: false
      }).to("hdc-server-1")
      

      File Writeback

      algo(degree).params({
        project: "hdc_degree",
        return_id_uuid: "id",
        order: "desc"
      }).write({
        file: {
          filename: "degree"
        }
      })
      

      Results:

      _id,degree_centrality
      Anna,5
      Cathy,4
      Joe,3
      Mike,3
      Bob,2
      Sam,2
      Bill,1
      Tim,0
      

      DB Writeback

      Writes the degree_centrality values from the results to the specified node property. The property type is double.

      algo(degree).params({
        project: "hdc_degree",
        edge_schema_property: 'score'
      }).write({
        db:{ 
          property: 'degree'
        }
      })
      

      Full Return

      exec{
        algo(degree).params({
          edge_schema_property: 'score',
          return_id_uuid: "id",
          order: 'desc'
        }) as r
        return r
      } on hdc_degree
      

      Results:

      _id degree_centrality
      Anna 11.1
      Cathy 6.5
      Joe 6.1
      Bob 5.2
      Mike 4.9
      Sam 4.3
      Bill 2.3
      Tim 0

      Stream Return

      To find neighbors of the node with the highest out-degree:

      exec{
        algo(degree).params({
          direction: "out",
          order: "desc",
          limit: 1 
        }).stream() as outTop1
        khop().src({_uuid == outTop1._uuid}).depth(1) as neigh
        return neigh._id
      } on hdc_degree
      

      Results:

      neigh._id
      Anna
      Joe
      Mike

      Running on Distributed Projections

      Creating Distributed Projections

      To project the entire graph to its shard servers as dist_degree:

      create().project("dist_degree", {
        nodes: {"*": ["*"]}, 
        edges: {"*": ["*"]},
        direction: "undirected",
        load_id: true
      })
      

      File Writeback

      algo(degree).params({
        project: "dist_degree",
        return_id_uuid: "id",
        order: "desc"
      }).write({
        file: {
          filename: "degree"
        }
      })
      

      Results:

      _id,degree_centrality
      Anna,5
      Cathy,4
      Joe,3
      Mike,3
      Bob,2
      Sam,2
      Bill,1
      Tim,0
      

      DB Writeback

      Writes the degree_centrality values from the results to the specified node property. The property type is double.

      algo(degree).params({
        project: "dist_degree",
        edge_schema_property: 'score'
      }).write({
        db:{ 
          property: 'degree'
        }
      })
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写