Description Usage Format Details Licenses and Citation Source References See Also Examples
These 14 networks record weekly sociometric preference rankings from 17 men attending the University of Michigan in the fall of 1956; Data were collected longitudinally over 15 weeks, although data from week 9 are missing.
1 |
List of 15 directed network
objects.
The men were recruited to live in off-campus (fraternity) housing, rented for them as part of the Michigan Group Study Project supervised by Theodore Newcomb from 1953 to 1956. All were incoming transfer students with no prior acquaintance of one another.
The data set, derived from one in the unreleased netdata
package,
contains a network list newcomb
with 14 networks. Each network is
complete and contains two edge attributes:
the preference of the ith man for the jth man from
1
through 16
, with 1
being the highest preference.
the same, but 1
indicates lowest preference.
If the section Source of this page does not specify otherwise, this data set is protected by the Creative Commons License https://creativecommons.org/licenses/by/4.0/.
When publishing results obtained using this data set, the original authors
(see sections Source and/or References) should be cited, along with this
R
package. To cite this package please use the following:
Handcock M, Hunter D, Butts C, Goodreau S, Krivitsky P, Morris M, Bojanowski M (2021). statnet.data: Network Datasets for the Statnet Suite. R package version 0.1-0, <URL: https://statnet.org>.
Vladimir Batagelj and Andrej Mrvar (2006) Pajek datasets. http://vlado.fmf.uni-lj.si/pub/networks/data/, http://vlado.fmf.uni-lj.si/pub/networks/data/ucinet/ucidata.htm#newfrat
Newcomb T. (1961). The acquaintance process. New York: Holt, Reinhard and Winston.
Nordlie P. (1958). A longitudinal study of interpersonal attraction in a natural group setting. Unpublished doctoral dissertation, University of Michigan.
White H., Boorman S. and Breiger R. (1977). Social structure from multiple networks, I. Blockmodels of roles and positions. American Journal of Sociology, 81, 730-780.
Other directed networks:
ecoli
,
emon
,
faux.desert.high
,
faux.dixon.high
,
g4
,
samplk
,
sampson
,
tribes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ## Not run:
library(ergm)
# Note: This takes a long time.
# Fit a model for the transition between initial (time 0) ranking and
# ranking after one week (time 1). Note that MCMC interval has been
# decreased to save time.
newcomb.1.2.fit <- ergm(
newcomb[[2]] ~ rank.inconsistency(newcomb[[1]], "descrank") +
rank.deference + rank.nonconformity("all") +
rank.nonconformity("localAND"),
response = "descrank",
reference = ~ CompleteOrder,
control = control.ergm(
MCMLE.trustregion = 10000,
MCMC.interval=10
)
)
# Check MCMC diagnostics (barely adequate).
mcmc.diagnostics(newcomb.1.2.fit)
summary(newcomb.1.2.fit)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.