:BetweennessCentrality leaf node


URI

https://liidr.org/trust-recommendation-in-social-internet-of-things/BetweennessCentrality

Label

Betweenness Centrality

Description

Betweenness centrality describes how often a node acts as an intermediate node between other nodes in the network. Nodes with a high betweenness centrality have a central role in the network to enable trust recommendation between other nodes.

Usage

Instances of :BetweennessCentrality can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class :Network
:isCommunicatedIn owl:ObjectProperty A network has a device as component :Device
:isFormedBy owl:ObjectProperty The network is formed by relationships. :Relationship
:isRecommendedBy owl:ObjectProperty Trustor, Trustee, Network, and Relationship classes are recommended by Trust Recommendation. :TrustRecommendation
From class owl:Thing
:#preferredNamespacePrefix owl:AnnotationProperty owl:Thing
dcterms:/creator owl:AnnotationProperty owl:Thing
dcterms:/issued owl:AnnotationProperty owl:Thing
dcterms:/modified owl:AnnotationProperty owl:Thing
dcterms:/publisher owl:AnnotationProperty owl:Thing

Implementation

@prefix : <https://liidr.org/trust-recommendation-in-social-internet-of-things/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:BetweennessCentrality a owl:Class ;
    rdfs:label "Betweenness Centrality"@en ;
    rdfs:comment "Betweenness centrality describes how often a node acts as an intermediate node between other nodes in the network. Nodes with a high betweenness centrality have a central role in the network to enable trust recommendation between other nodes."@en ;
    rdfs:subClassOf :Centrality .