fractional_approach | R Documentation |
Matrix transformation from incidence matrices to citation networks, fractional counting for co-citation or fractional counting for bibliographic coupling
fractional_approach(
A1,
A2,
approach = c("citation", "cocitation", "bcoupling")
)
A1 |
From incidence matrix (e.g. paper and authors) |
A2 |
To incidence matrix (e.g. author to paper) |
approach |
Character string, “citation”, “cocitation” and “bcoupling” |
Return a type of "citation network"
Alejandro Espinosa-Rada
Batagelj, V. (2020). Analysis of the Southern women network using fractional approach. Social Networks, 68, 229-236 https://doi.org/10.1016/j.socnet.2021.08.001
Batagelj, V., & Cerinšek, M. (2013). On bibliographic networks. Scientometrics, 96(3), 845–864. https://doi.org/10.1007/s11192-012-0940-1
A1 <- matrix(c(
1, 0, 0, 0,
0, 1, 0, 0,
0, 1, 1, 1,
0, 0, 0, 0,
0, 0, 0, 1
), byrow = TRUE, ncol = 4)
A2 <- matrix(c(
1, 1, 1, 0, 0,
0, 0, 1, 0, 0,
0, 0, 1, 1, 0,
0, 0, 0, 1, 1
), byrow = TRUE, ncol = 5)
fractional_approach(A1, A2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.