You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
igraph_hub_score() and igraph_authority_score() are deprecated because it makes sense to always compute these two scores together (for efficiency, interpretability and to make sure we get a matching pair). The new function is called igraph_hub_and_authority_scores().
I suggest merging these two in R under the name hits_scores(). See https://en.wikipedia.org/wiki/HITS_algorithm for where the name comes from. This name is short and there's precedence (both Mathematica and NetworkX use a variation of it).
In the longer term I also suggest deprecating the separate hub_score() and authority_score() functions in favour of the combined one (hits_scores()).
The TL;DR of this comment is a suggestion on what to call the combined function.
Change to
#define IGRAPH_DEPRECATED __attribute__ ((__deprecated__))
and fix errors, one PR for each deprecated function.The text was updated successfully, but these errors were encountered: