I downloaded the adjacency matrix and i put it in MATLAB to try to obtain the same values of betweness centrality of citespace but the standar function gives me very high values and i found out that is possible to normalized to get values between 0 and 1, but i keep failing to get the same values citespace is calculating, there is another step i must consider?, theres another method to calculated betweness centrality?
Example:
n = number of nodes
bc = value of betweness centrality from function standar in matlab
Hi Dr. Chen, thank you in advance for your help!
I downloaded the adjacency matrix and i put it in MATLAB to try to obtain the same values of betweness centrality of citespace but the standar function gives me very high values and i found out that is possible to normalized to get values between 0 and 1, but i keep failing to get the same values citespace is calculating, there is another step i must consider?, theres another method to calculated betweness centrality?
Example:
n = number of nodes
bc = value of betweness centrality from function standar in matlab
max_bc = ((n-1)*(n-2))/2
bc_normalized = bc/max_bc
Thank you in advance!