Positional dominance in networks
Source:vignettes/positional_dominance.Rmd
positional_dominance.Rmd
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.
Theoretical Background
A network can be described as a dyadic variable
,
where
is the value range of the network (in the simple case of unweighted
networks
)
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
be a network and
.
We say that
is dominated by
under the total homogeneity assumption, denoted by
if
If there exists a permutation
such that
we say that
is dominated by
under the total heterogeneity assumption, denoted by
.
It holds that
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)
Positional Dominance in the netrankr
Package
The 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
.
D1 <- g %>%
indirect_relations(type="dist_sp") %>%
positional_dominance(map=FALSE,benefit=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: is equivalent to )
all(D1!=1 | D2==1)
## [1] TRUE