stochBlock | R Documentation |
clu
is a list, the method for linked/multilevel networks is appliedFunction that performs stochastic one-mode and linked blockmodeling by optimizing a single partition. If clu
is a list, the method for linked/multilevel networks is applied
stochBlock( M, clu, weights = NULL, uWeights = NULL, diagonal = c("ignore", "seperate", "same"), limitType = c("none", "inside", "outside"), limits = NULL, weightClusterSize = 1, addOne = TRUE, eps = 0.001 )
M |
A matrix representing the (usually valued) network. For multi-relational networks, this should be an array with the third dimension representing the relation. |
clu |
A partition. Each unique value represents one cluster. If the network is one-mode, than this should be a vector, else a list of vectors, one for each mode. Similarly, if units are comprised of several sets, clu should be the list containing one vector for each set. |
weights |
The weights for each cell in the matrix/array. A matrix or an array with the same dimensions as |
uWeights |
The weights for each unin. A vector with the length equal to the number of units (in all sets). |
diagonal |
How should the diagonal values be treated. Possible values are:
|
limitType |
Type of limit to use. Forced to 'none' if |
limits |
If
If |
weightClusterSize |
The weight given to cluster sizes (logprobabilites) compared to ties in loglikelihood. Defaults to 1, which is "classical" stochastic blockmodeling. |
addOne |
Should one tie with the value of the tie equal to the density of the superBlock be added to each block to prevent block means equal to 0 or 1 and also "shrink" the block means toward the superBlock mean. Defaults to TRUE. |
eps |
If addOne = FALSE, the minimal deviation from 0 or 1 that the block mean/density can take. |
A list of class opt.par
normally passed other commands with StockBlockORP
and containing:
clu |
A vector (a list for multi-mode networks) indicating the cluster to which each unit belongs; |
IM |
Image matrix of this partition; |
weights |
The weights for each cell in the matrix/array. A matrix or an array with the same dimensions as |
uWeights |
The weights for each unit. A vector with the length equal to the number of units (in all sets). |
err |
The error as the sum of the inconsistencies between this network and the ideal partitions. |
ICL |
Integrated Criterion Likelihood for this partition |
Aleš, Žiberna
Škulj, D., & Žiberna, A. (2022). Stochastic blockmodeling of linked networks. Social Networks, 70, 240-252.
stochBlockORP
# Create a synthetic network matrix set.seed(2022) library(blockmodeling) k<-2 # number of blocks to generate blockSizes<-rep(20,k) IM<-matrix(c(0.8,.4,0.2,0.8), nrow=2) clu<-rep(1:k, times=blockSizes) n<-length(clu) M<-matrix(rbinom(n*n,1,IM[clu,clu]),ncol=n, nrow=n) clu<-sample(1:2,nrow(M),replace=TRUE) plotMat(M,clu) # Have a look at this random partition res<-stochBlock(M,clu) # Optimising the partition plot(res) # Have a look at the optimised parition # Create a synthetic linked-network matrix set.seed(2022) library(blockmodeling) IM<-matrix(c(0.8,.4,0.2,0.8), nrow=2) clu<-rep(1:2, each=20) # Partition to generate n<-length(clu) nClu<-length(unique(clu)) # Number of clusters to generate M1<-matrix(rbinom(n^2,1,IM[clu,clu]),ncol=n, nrow=n) # First network M2<-matrix(rbinom(n^2,1,IM[clu,clu]),ncol=n, nrow=n) # Second network M12<-diag(n) # Linking network nn<-c(n,n) k<-c(2,2) Ml<-matrix(0, nrow=sum(nn),ncol=sum(nn)) Ml[1:n,1:n]<-M1 Ml[n+1:n,n+1:n]<-M2 Ml[n+1:n, 1:n]<-M12 plotMat(Ml) # Linked network clu1<-sample(1:2,nrow(M1),replace=TRUE) clu2<-sample(3:4,nrow(M1),replace=TRUE) plotMat(Ml,list(clu1,clu2)) # Have a look at this random partition res<-stochBlock(Ml,list(clu1,clu2)) # Optimising the partition plot(res) # Have a look at the optimised parition
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.