As far as I know, the function in networkx for graph's transitivity is unweighted (shown as follow).
networkx.transitivity(G)
I have tried it on a weighted graph, but in the results, only edges are considered. Is there any other way in networkx to calculate weighted transitivity? Besides, I only find the way in R, but I know nothing about R.