Calculates the fraction of incomparable pairs in a partial order.
Arguments
- P
A partial order as matrix object, e.g. calculated with neighborhood_inclusion or positional_dominance.
Examples
library(igraph)
g <- sample_gnp(100, 0.1)
P <- neighborhood_inclusion(g)
comparable_pairs(P)
#> [1] 0
# All pairs of vertices are comparable in a threshold graph
tg <- threshold_graph(100, 0.3)
P <- neighborhood_inclusion(g)
comparable_pairs(P)
#> [1] 0