mixtbern: Single allocation clustering in networks

Description Usage Arguments Value Examples

View source: R/mixtbern.R

Description

This function infers K single allocation cluster for actor-event network data.

Usage

1
mixtbern(y, K = 4, maxT = 5000, seed = 1, verbose = FALSE)

Arguments

y

A n x d actor-event adjacency matrix, whereby y_ij is 1 if actor i attended event j – 0 otherwise.

K

Number of single clusters. Default is set to 4.

maxT

Number of MCMC iterations. Default is set to 5000.

seed

Random seed. Default is 1.

verbose

Set to TRUE if you want to see the steps of the MCMC iterations. Defaults is FALSE.

Value

A manet object consisting of a list with five outputs:

Examples

1
2
3
4
data(deepsouth)
ds<-mixtbern(deepsouth,K=2,maxT=100)
plot(ds)
summary(ds)

manet documentation built on May 2, 2019, 2:31 a.m.

Related to mixtbern in manet...