consensus
estimates a central or consensus structure given multiple observations, using one of several algorithms.consensus(dat, mode="digraph", diag=FALSE, method="central.graph",
tol=0.01)
central.graph
: Estimate the consensus structure using the central graph. This correponds to a ``median response'' notion of consensus.single.reweight
: Estimate the consensus structure using subject responses, reweighted by mean graph correlation. This corresponds to an ``expertise-weighted vote'' notion of consensus.PCA.reweight
: Estimate the consensus using the (scores on the) first component of a network PCA. This corresponds to a ``shared theme'' or ``common element'' notion of consensus.Note that the reweighted algorithms are not dichotomized by default; since these return valued graphs, dichotomization may be desirable prior to use.
It should be noted that a model for estimating an underlying criterion structure from multiple informant reports is provided in bbnam
; if your goal is to reconstruct an ``objective'' network from informant reports, this may prove more useful.
Butts, C.T., and Carley, K.M. (2001). ``Multivariate Methods for Inter-Structural Analysis.'' CASOS Working Paper, Carnegie Mellon University.
Krackhardt, D. (1987). ``Cognitive Social Structures.'' Social Networks, 9, 109-134.
[object Object],[object Object]bbnam
model, users may wish to try this alternative for now.
#Find some consensus structures
consensus(g.obs) #Central graph
consensus(g.obs,method="single.reweight") #Single reweighting
consensus(g.obs,method="PCA.reweight") #1st component in network PCA