This vignette describes the
concept of positional dominance, the generalization of neighborhood-inclusion for
arbitrary network and attribute data. Additionally, some use cases with
the netrankr
package are given. The partial ranking induced
by positional dominance can be used to assess partial centrality or compute probabilistic centrality.
A network can be described as a dyadic variable xβββπ²π, where π² is the value range of the network (in the
simple case of unweighted networks π²β=β{0,β1}) and πβ=βπ©β
Γβ
π describes the dyadic domain of
actors π© and affiliations π. If πββ βπ©,
we obtain a two-mode network and if πβ=βπ© a one-mode network consisting
of relations among actors.
Definition
Let xβββπ²π be a
network and i,βjβββπ©.
We say that i is dominated by
j under the total
homogeneity assumption, denoted by iββ€βj if xitββ€βxjtβββtβββπ©.
If there exists a permutation Οβ:βπ©βββπ© such that xitββ€βxjΟ(t)βββtβββπ©,
we say that i is dominated by
j under the total
heterogeneity assumption, denoted by iββͺ―βj.
It holds that iββ€βjββΉβiββͺ―βj
but not vice versa.
More about the positional dominance and the positional approach to network analysis can be found in
Brandes, Ulrik. (2016). Network Positions. Methodological Innovations, 9, 2059799116630650. (link)
netrankr
PackageThe function positional_dominance
can be used to check
both, dominance under homogeneity and heterogeneity. In accordance with
the analytic pipeline of centrality we use the %>%
operator.
data("dbces11")
g <- dbces11
#neighborhood inclusion can be expressed with the analytic pipeline
D <- g %>% indirect_relations(type="adjacency") %>% positional_dominance()
More on the indirect_relations()
function can be found
in this vignette.
The map
parameter of positional_dominance
allows to distinguish between dominance under total
heterogeneity (map=FALSE
) and total
homogeneity (map=TRUE
). In the later case, all
relations can be ordered non-decreasingly (or non-increasingly if the
relation describes costs, such as distances) and afterwards checked
front to back. Dominance under total homogeneity yields a ranking, if
the relation is binary (e.g.Β adjacent or not).
D <- g %>%
indirect_relations(type="adjacency") %>%
positional_dominance(map=TRUE)
comparable_pairs(D)
## [1] 1
For cost variables like shortest path distances, the
benefit
parameter is set to FALSE
.
From the definition given in the first section, it is clear that there are always at least as many comparable pairs under the total homogeneity assumption as under total heterogeneity.
D1 <- g %>%
indirect_relations(type="dist_sp") %>%
positional_dominance(map=FALSE,benefit=FALSE)
D2 <- g %>%
indirect_relations(type="dist_sp") %>%
positional_dominance(map=TRUE,benefit=FALSE)
c("heterogeneity"=comparable_pairs(D1),
"homogeneity"=comparable_pairs(D2))
## heterogeneity homogeneity
## 0.1636364 0.8727273
Additionally, all dominance relations from the heterogeneity assumption are preserved under total homogeneity. (Note: AββΉβB is equivalent to Β¬Aβ β¨β B)
## [1] TRUE