Description Usage Arguments Value Author(s) Examples
The degree of vertices in the multiplex network, the number of its similar neighbors ie neighbors_similarity.multiplex
1 | degree_similarity.multiplex(multiplex,node_name,similarity_function,delta)
|
multiplex |
: The multiplex object. |
node_name |
: Character scalar, or list. The vertex name of which the degree vertices are queried. |
similarity_function |
: Character scalar, the name of the similarity function. |
delta |
: Numeric scalar, the minimum pourcentage of layers in which the neighbors must be adjacent to the vertex. |
Dataframe the name of vertices and the degree of each vertex.
Issam Falih <issam.falih@lipn.univ-paris13.fr>
1 2 3 4 5 6 | M <- Multiplex_Lazega
degree_similarity.multiplex(M,"2" ,similarity.jaccard, 0)
degree_similarity.multiplex(M,c("2","4","45"), similarity.jaccard, 0.3)
degree_similarity.multiplex(M, similarity_function = similarity.jaccard, delta=0.8)
degree_similarity.multiplex(M, similarity_function = similarity.invlogweighted,delta= 0.3)
degree_similarity.multiplex(M, similarity_function = similarity.dice, delta=0.3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.