The lift can be used to analyse the dependence within each groups found using the function mlta.The lift can be used to quantify the effect of the dependence on the probability of a sender nodes being liked to two receivers within each group compared to the probability of being liked to two receivers under an independence model. Two independent links to the receiver nodes have lift = 1: the more the links to receiver nodes are dependent, the further the value of the lift is from 1.

lift(x, pdGH = 21)

Arguments

x

object of class mlta

pdGH

number of quadrature points for the Gauss-Hermite quadrature. Default pdGH = 21

Value

The function returns an (M x M x D) array.

References

Gollini, I. (in press) 'A mixture model approach for clustering bipartite networks', Challenges in Social Network Research Volume in the Lecture Notes in Social Networks (LNSN - Series of Springer). Preprint: https://arxiv.org/abs/1905.02659.

Gollini, I., and Murphy, T. B. (2014), 'Mixture of Latent Trait Analyzers for Model-Based Clustering of Categorical Data', Statistics and Computing, 24(4), 569-588 http://arxiv.org/abs/1301.2167.

See also

Examples

### Simulate Bipartite Network set.seed(1) X <- matrix(rbinom(4 * 12, size = 1, prob = 0.4), nrow = 12, ncol = 4) res <- mlta(X, G = 2, D = 1) res_lift <- lift(res)