RssThisRadius {dils} | R Documentation |
This is a helper function for RelationStrengthSimilarity that returns the component of RSS contributed by paths of one particular length r.
RssThisRadius(x, v1, v2, r, prepped = FALSE)
x |
numeric matrix, adjacency matrix where the [i,j] entry gives the strength of the link from node i to node j. |
v1 |
numeric, index of the 'from' node. |
v2 |
numeric, index of the 'to' node. |
r |
numeric, length of paths examined from |
prepped |
logical, whether or not the adjacency
matrix |
numeric, the part of the Relation Strength Similarity
score from v1
to v2
contributed by paths of
length r
.
Stephen R. Haptonstahl srh@haptonstahl.org
"Discovering Missing Links in Networks Using Similarity Measures", Hung-Hsuan Chen, Liang Gou, Xiaolong (Luke) Zhang, C. Lee Giles. 2012.
https://github.com/shaptonstahl/
M <- as.matrix(get.adjacency(graph.atlas(128))) M dils:::RssThisRadius(x=M, v1=5, v2=6, r=1) dils:::RssThisRadius(x=M, v1=5, v2=6, r=2) dils:::RssThisRadius(x=M, v1=5, v2=6, r=3) dils:::RssThisRadius(x=M, v1=5, v2=6, r=4)