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

Search
    English

      k-Truss

      ✓ File Writeback ✕ Property Writeback ✓ Direct Return ✓ Stream Return ✕ Stats

      Overview

      The k-Truss algorithm identifies the maximal cohesive subgraph called truss in the graph. It has wide-ranging applications across various domains, including social networks, biological networks, and transportation networks. By uncovering communities or clusters of closely related nodes, the k-Truss algorithm provides valuable insights into the structure and connectivity of complex networks.

      k-Truss were originally defined by J. Cohen in 2005:

      Concepts

      k-Truss

      The truss is motivated by a natural observation of social cohesion: if two people are strongly tied, it is likely that they also share ties to others. k-Truss is thus created in this way: a tie between A and B is considered legitimate only if supported by at least k–2 other people who are each tied to A and to B. In other words, each edge in a k-truss joins two nodes that have at least k–2 common neighbors.

      The formal definition is, a k-truss is a maximal subgraph in the graph such that each edge is supported by at least k–2 pairs of edges making triangles with the that edge.

      The entire graph is shown below, the 3-truss and 4-truss are highlighted in red. This graph does not have truss with 5 or larger value of k.

      Ultipa's k-Truss algorithm identifies the maximal truss in each connected component.

      Considerations

      • At least 3 nodes are contained in a truss (when k≥3).
      • In a complex graph where multiple edges can exist between two nodes, the triangles in a truss are counted by edges. Please also refer to the Triangle Counting algorithm.
      • The k-Truss algorithm ignores the direction of edges but calculates them as undirected edges.

      Syntax

      • Command: algo(k_truss)
      • Parameters:
      Name
      Type
      Spec
      Default
      Optional
      Description
      k int ≥2 / No Each edge in the k-truss is contained in at least k − 2 triangles

      Examples

      The example graph is as follows:

      File Writeback

      Spec
      Content
      Description
      filename _id--[_uuid]--_id One-step path in the truss: (start node)--(edge)--(end node)
      algo(k_truss).params({k: 4}).write({
        file:{
            filename: 'truss'
        }
      })
      

      Results: File truss

      d--[102]--a
      c--[103]--a
      d--[104]--c
      f--[105]--a
      f--[106]--d
      e--[110]--f
      f--[111]--c
      i--[113]--m
      d--[107]--f
      g--[120]--k
      m--[121]--k
      i--[122]--f
      f--[108]--d
      d--[109]--e
      m--[123]--f
      f--[124]--g
      k--[117]--f
      g--[125]--m
      i--[114]--g
      

      Direct Return

      Alias Ordinal
      Type
      Description
      0 []path One-step path in the truss:
      _uuid (start node) -- [_uuid] (edge) -- _uuid (end node)
      algo(k_truss).params({k: 5}) as truss return truss
      

      Results: subgraph

      4--[102]--1
      4--[104]--3
      6--[105]--1
      6--[106]--4
      4--[107]--6
      6--[108]--4
      4--[109]--5
      5--[110]--6
      6--[111]--3

      Stream Return

      Alias Ordinal
      Type
      Description
      0 []path One-step path in the truss:
      _uuid (start node) -- _uuid (edge) -- _uuid (end node)
      algo(k_truss).params({k: 5}).stream() as truss5
      with pedges(truss5) as e
      find().edges(e) as edges
      return edges{*}
      

      Results: edges

      _uuid _from _to _from_uuid _to_uuid
      102 d a 4 1
      104 d c 4 3
      105 f a 6 1
      106 f d 6 4
      107 d f 4 6
      108 f d 6 4
      109 d e 4 5
      110 e f 5 6
      111 f c 6 3
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写