Learn R Programming

Perc (version 0.1.6)

valueConverter: win-loss probability matrix value converter

Description

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

Usage

valueConverter(matrix)

Arguments

matrix

the win-loss matrix which is the second output from conductance.

Value

a matrix of win-loss probability ranging from 0.5 - 1.0.

See Also

conductance, individualDomProb, dyadicLongConverter

Examples

Run this code
# NOT RUN {
# 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)
# }

Run the code above in your browser using DataLab