Skip to content

Commit

Permalink
corrected func calls
Browse files Browse the repository at this point in the history
  • Loading branch information
bburns632 committed Nov 11, 2024
1 parent 406fd34 commit d923589
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/GraphClasses.R
Original file line number Diff line number Diff line change
Expand Up @@ -370,18 +370,18 @@ DirectedGraph <- R6::R6Class(

# Hub Score
, hubScore = function(self){
igraph::hits_scores$hub(
igraph::hits_scores(
graph = self$igraph
, scale = TRUE
)$vector
)$hub
}

# Authority Score
, authorityScore = function(self){
igraph::hits_score$authority(
igraph::hits_scores(
graph = self$igraph
, scale = TRUE
)$vector
)$authority
}

) #/node_measure_functions
Expand Down

0 comments on commit d923589

Please sign in to comment.