valueConverter {Perc} | R Documentation |
valueConverter
converts or transforms all values (which range from 0.0 to 1.0)
in the win-loss probability matrix into 0.5 - 1.0
valueConverter(matrix)
matrix |
the win-loss matrix which is the second output from |
a matrix of win-loss probability ranging from 0.5 - 1.0.
conductance
, individualDomProb
, dyadicLongConverter
# convert an edgelist to conflict matrix
confmatrix <- as.conflictmat(sampleEdgelist)
# find win-loss probability matrix
perm2 <- conductance(confmatrix, 2)
perm2$imputed.conf
perm2$p.hat
convertedValue <- valueConverter(perm2$p.hat)