diff --git a/DESCRIPTION b/DESCRIPTION index 54069f3..6c437c2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,8 +2,8 @@ Encoding: UTF-8 Package: RSiena Type: Package Title: Siena - Simulation Investigation for Empirical Network Analysis -Version: 1.6.6 -Date: 2026-04-20 +Version: 1.6.7 +Date: 2026-05-15 Authors@R: c(person("Tom A.B.", "Snijders", role = c("aut", "ctb"), comment = c(ORCID = "0000-0003-3157-4157")), person("Ruth M.", "Ripley", role = "aut"), person("Krists", "Boitmanis", role = c( "aut","ctb")), diff --git a/NEWS.md b/NEWS.md index fa0b113..9ade2a1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,17 @@ +2026-05-15 + +# RSiena 1.6.7 + +## Changes in RSiena: +### Functionality + * Option `onestep` for `test_parameter(..., method="score", ...)`. + * Option `onestep` for `update_theta`. + * Name `sienaNet` added to `transformScript` as one of the names + to be replaced. + * Small comment changes in `initializeFRAN.r` and `maxlikec.r`. + * `make_effects` also works for `sienadata` objects older than 1.4.10 + (due to small change in `effects.r`). + 2026-04-20 # RSiena 1.6.6 diff --git a/R/Sienatest.r b/R/Sienatest.r index 50e2332..02a8433 100644 --- a/R/Sienatest.r +++ b/R/Sienatest.r @@ -42,7 +42,16 @@ test_parameter.sienaFit <- function(x, method=NULL, { tested <- x$test } - score.Test(x, tested=tested) + if (hasArg("onestep")) + { + args <- list(...) + onest <- args$onestep + } + else + { + onest <- FALSE + } + score.Test(x, tested=tested, onestep=onest) } else if (method=="same") { @@ -209,6 +218,7 @@ ScoreTest<- function(pp, dfra, msf, fra, test, redundant, maxlike) { oneStep<- -dinv2 %*% fra } +# All the following are added to z in terminateFRAN list(testresult=testresult, testresulto=testresulto, testresOverall=testresOverall, covMatrix=covMatrix, oneStep=oneStep, dinv2= dinv2, dfra2=dfra2) @@ -306,11 +316,12 @@ theEfNames <- function(ans){ res } -##@scoreTest Calculate score tested -score.Test <- function(x, tested=x$test) +##@score.Test Calculate score tested +score.Test <- function(x, tested=x$test, onestep=FALSE) # use: x must be a sienaFit object; # tested must be a boolean vector with length equal to the number of parameters of x, - # or a vector of integer numbers between 1 and x$pp. + # or a vector of integer numbers between 1 and x$pp; + # a boolean vector with all TRUE { if ((is.numeric(tested)) || (is.integer(tested))) { @@ -319,17 +330,31 @@ score.Test <- function(x, tested=x$test) stop(paste('The maximum requested coordinate is too high:', max(tested))) } - tested <- (1:x$pp) %in% tested + btested <- (1:x$pp) %in% tested + } + else # it should be logical + { + if (all(tested)) + { + tested <- x$test + } + else if (length(tested) != x$pp) + { + stop(paste('The length of the boolean vector is ', length(tested), + ', but it should be ', x$pp, '.', sep='')) + } + btested <- tested + tested <- which(btested) } - if (sum(tested) <= 0) stop(paste('Something should be tested, but the total requested is', - sum(tested))) - if (length(tested) != x$pp) stop('Dimensions of tested must agree') - if (any(tested & (!x$fix))) warning('Warning: some tested parameters were not fixed; do you know what you are doing??? \n') + if (sum(btested) <= 0) stop(paste('Something should be tested, but the total requested is', + sum(btested))) + if (length(btested) != x$pp) stop('Length of boolean vector tested should be', x$pp) + if (any(btested & (!x$fix))) warning('Warning: some tested parameters were not fixed; do you know what you are doing??? \n') fra <- colMeans(x$sf, na.rm=TRUE) - redundant <- (x$fix & (!tested)) - tests <- EvaluateTestStatistic(x$maxlike, tested, redundant, x$dfra, x$msf, fra) + redundant <- (x$fix & (!btested)) + tests <- EvaluateTestStatistic(x$maxlike, btested, redundant, x$dfra, x$msf, fra) teststat <- tests$cvalue - df <- sum(tested) + df <- sum(btested) if (df == 1) { onesided <- tests$oneSided @@ -339,8 +364,18 @@ score.Test <- function(x, tested=x$test) onesided <- NULL } pval <- 1 - pchisq(teststat, df) - efnames <- theEfNames(x)[tested] - t_x <- list(chisquare=teststat, df=df, pvalue=pval, onesided=onesided, efnames=efnames) + efnames <- theEfNames(x)[btested] + if (onestep) + { + onestepests <- x$oneStep + x$theta + } + else + { + onestepests <- NULL + } + t_x <- list(chisquare=teststat, df=df, pvalue=pval, onesided=onesided, + efnames=efnames, theEfNames=theEfNames(x), + onestepests=onestepests) class(t_x) <- "sienaTest" attr(t_x, "version") <- packageDescription(pkgname, fields = "Version") t_x @@ -388,6 +423,10 @@ Wald.RSiena <- function(A, x) Multipar.RSiena <- function(x, tested) { p <- length(x$theta) + if (any(x$requestedEffects[tested,"fix"])) + { + stop("Some parameters to be tested are fixed") + } efnames <- theEfNames(x)[tested] k <- length(tested) A <- matrix(0, nrow=k, ncol=p) @@ -430,7 +469,7 @@ testSame.RSiena <- function(x, e1, e2){ } ##@print.sienaTest Methods -print.sienaTest <- function(x, ...) +print.sienaTest <- function(x, ...) { if (!inherits(x, "sienaTest")) { @@ -450,7 +489,7 @@ print.sienaTest <- function(x, ...) ', d.f. = ', x$df, '; ', sep='')) if ((x$df == 1) & (!is.null(x$onesided)) & (!is.null(x$sterror))) { - cat(paste( 'standard error of linear combination = ', + cat(paste( 'standard error = ', format(round(x$sterror, digits=3), nsmall = 2), '; ', sep='')) cat(paste('one-sided Z = ', format(round(x$onesided, digits=2), nsmall = 2), '; ', sep='')) @@ -465,5 +504,20 @@ print.sienaTest <- function(x, ...) cat(paste(' p = ', format(round(x$pvalue, digits=3), nsmall = 2), '. \n', sep='')) } + if (!is.null(x$onestepests)) + { + # this implies it comes from score.Test + cat('One-step estimates:\n') + maxname <- max(nchar(x$efnames)) + # pad names with trailing 0s, if necessary: + pad <- Vectorize(function(t){ + while(nchar(t) < maxname){ + t <- paste(t, " ", sep="") + } + return(t)}) + padded <- pad(x$theEfNames) + onestepest <- x$onestepests + cat(paste(padded, sprintf("%7.3f", onestepest), '\n'), sep="") + } invisible(x) } diff --git a/R/TransformScript.R b/R/TransformScript.R index 82c8566..c96d50e 100644 --- a/R/TransformScript.R +++ b/R/TransformScript.R @@ -70,6 +70,7 @@ transformScript <- function(theoldscript, fileName="newScript.R", ################################################################################ namePairs <- list(c("sienaDependent", "as_dependent_rsiena"), + c("sienaNet", "as_dependent_rsiena"), c("coCovar", "as_covariate_rsiena"), c("varDyadCovar", "as_covariate_rsiena"), c("sienaCompositionChange", "as_composition_rsiena"), diff --git a/R/effects.r b/R/effects.r index 30461c7..63f226b 100644 --- a/R/effects.r +++ b/R/effects.r @@ -76,10 +76,15 @@ createEffects <- function(effectGroup, xName=NULL, yName=NULL, zName = NULL, DoubleAttributesChecked <- function(cova1, cova2) { if (is.null(attr(cova1,"lowIntegers")) | is.null(attr(cova2,"lowIntegers"))) + { + (lowIntegers(cova1, attr(cova1, "centered")) && + lowIntegers(cova2, attr(cova1, "centered"))) +# stop("Please use function sienaDataCreate for RSiena version at least 1.4.10") + } + else { - stop("Please use function sienaDataCreate for RSiena version at least 1.4.10") + (attr(cova1,"lowIntegers") && attr(cova2,"lowIntegers")) } - (attr(cova1,"lowIntegers") && attr(cova2,"lowIntegers")) } ##@getEffects DataCreate create effects object diff --git a/R/initializeFRAN.r b/R/initializeFRAN.r index ae3b9de..a5c1c48 100644 --- a/R/initializeFRAN.r +++ b/R/initializeFRAN.r @@ -122,7 +122,7 @@ initializeFRAN <- function(z, x, data, effects, prevAns=NULL, initC, } if (!initC) ## i.e. first time round { - if ((!inherits(data,"siena")) && (!inherits(data, 'sienadata'))) + if ((!inherits(data,"siena")) && (!inherits(data, "sienadata"))) { stop("not valid siena data object") } @@ -2135,11 +2135,31 @@ updateTheta <- function(effects, prevAns, varName=NULL) update_theta <- function(x, ...) UseMethod("update_theta", x) ##@updateTheta.sienaEffects Copy theta values from previous fit -update_theta.sienaEffects <- function(x, prevAns, varName=NULL, ...){ - updateTheta(x, prevAns=prevAns, varName=varName) +update_theta.sienaEffects <- function(x, prevAns, varName=NULL, onestep=FALSE, freed=0, r=1, ...){ + eff <- updateTheta(x, prevAns=prevAns, varName=varName) + if (onestep) + { + if (is.null(prevAns$oneStep)) + { + stop("prevAns does not contain any fixed-and-tested effects. Do not use onestep.") + } + effsF <- prevAns$requestedEffects + requested <- which(names(prevAns$requestedEffects)=="requested") + if (min(freed) > 0) + { + effsF$test[freed] <- FALSE + effsF$fix[freed] <- FALSE + } + effsF$initialValue <- prevAns$theta + r*prevAns$oneStep +# If this leads to an error, perhaps +# effsF$initialValue[!effsF$basicRate[effsF$include]] <- prevAns$theta + r*prevAns$oneStep + eff[eff$effectNumber %in% effsF$effectNumber,] <- subset(effsF ,select = -requested) + } + eff } -##@ numberIntn siena07 sienaBayes, number of network interaction effects used for getEffects + +##@ numberIntn siena07 multi_siena, number of network interaction effects used for getEffects numberIntn <- function(myeff){ if (!is.null(myeff)){ numnet <- length(unique(myeff$name[myeff$shortName=="density"])) # number of dependent networks @@ -2152,7 +2172,7 @@ numberIntn <- function(myeff){ ifelse((numnet <= 0), 10, nintn/numnet) # 10 is the default in getEffects } -##@ numberIntn siena07 sienaBayes, number of behavior interaction effects used for getEffects +##@ numberIntn siena07 multi_siena, number of behavior interaction effects used for getEffects numberBehIntn <- function(myeff){ if (!is.null(myeff)){ numbeh <- length(unique(myeff$name[myeff$shortName=="linear"])) # number of discrete behaviors diff --git a/R/maxlikec.r b/R/maxlikec.r index fa94ce2..aa45e2f 100644 --- a/R/maxlikec.r +++ b/R/maxlikec.r @@ -119,7 +119,7 @@ maxlikec <- function(z, x, data=NULL, effects=NULL, sims <- 'no simulated dependent variables' } } - else ##onlyLoglik is always byGroup (sienaBayes) + else ##onlyLoglik is always byGroup (multi_siena) { ans[[1]] <- sum(sapply(anss, '[[', 1))## loglik ans[[2]] <- lapply(anss, "[[", 2) diff --git a/docs/manual/RSiena.bib b/docs/manual/RSiena.bib index 1ec556d..2527236 100644 --- a/docs/manual/RSiena.bib +++ b/docs/manual/RSiena.bib @@ -3,7 +3,7 @@ @article{AbramsEtAl1990 {S}elf-categorization and the nature of norm formation, conformity and group polarization}, author={Abrams, Dominic and Wetherell, Margaret and Cochrane, Sandra and - Hogg, Michael A and Turner, John C}, + Hogg, Michael A. and Turner, John C.}, journal={British Journal of Social Psychology}, volume={29}, issue={2}, @@ -90,7 +90,7 @@ @article{AhujaSodaZaheer2012 } @Article{AlbertAnderson84, - author = {A. Albert and J. A. Anderson}, + author = {A. Albert and J.A. Anderson}, title = {On the existence of the maximum likelihood estimates in logistic regression models}, journal = {Biometrika}, @@ -116,6 +116,16 @@ @article{aldous1983 year={1983} } +@inproceedings{Allison2008, + title={Convergence failures in logistic regression}, + author={Allison, Paul D}, + booktitle={SAS Global Forum}, + volume={360}, + issue={1}, + pages={11}, + year={2008} +} + @Article{AlmquistButts2013, author = {Zack W. Almquist and Carter T. Butts}, title = {Dynamic Network Logistic Regression: @@ -177,16 +187,16 @@ @article{AiroldiBFK2008 @Book{AMAND, author = {Tom A. B. Snijders and Christian E. G. Steglich}, - title = {Actor-based Models for Analyzing Network Dynamics}, - publisher = {\emph{In preparation}, Cambridge University Press}, + title = {Stochastic Actor-Oriented Models for Longitudinal Networks}, + publisher = {Cambridge University Press}, address = {Cambridge}, note = {In preparation}, year = 2026} @article{ALMP2021, author = {Viviana Amati and Alessandro Lomi and Daniele Mascia and Francesca Pallotti}, -title ={The Co-evolution of Organizational and Network Structure: - {T}he Role of Multilevel Mixing and Closure Mechanisms}, +title ={The co-evolution of organizational and network structure: + {T}he role of multilevel mixing and closure mechanisms}, journal = {Organizational Research Methods}, volume = {24}, issue = {2}, @@ -222,7 +232,7 @@ @article{An2015 volume = "43", pages = "48--56", year = "2015", -doi = "http://dx.doi.org/10.1016/j.socnet.2015.03.006", +doi = "https://dx.doi.org/10.1016/j.socnet.2015.03.006", author = "Weihua An" } @@ -430,6 +440,15 @@ @article{BarAlbert99 pages = { 509--512} } +@article{BarghWilliams2006, + title={The automaticity of social life current}, + author={Bargh, J.A. and Williams, E.L.}, + journal={Current Directions in Psychological Science}, + volume={15}, + pages={1--48}, + year={2006} +} + @book{Bartholomew1982, author = {Bartholomew, D.J.}, title = {Stochastic Models for Social Processes}, @@ -506,7 +525,7 @@ @article{BaumEA2012 @book{BenAkivaLerman1985, title={Discrete choice analysis: theory and application to travel demand}, - author={Ben-Akiva, Moshe E and Lerman, Steven R}, + author={Ben-Akiva, Moshe E. and Lerman, Steven R.}, volume={9}, year={1985}, publisher={MIT press} @@ -659,6 +678,15 @@ @article{BlondelEA2011 year={2011} } +@article{BodinNohrstedt2016, + title={Formation and performance of collaborative disaster management networks: Evidence from a Swedish wildfire response}, + author={Bodin, {\"O}rjan and Nohrstedt, Daniel}, + journal={Global Environmental Change}, + volume={41}, + pages={183--194}, + year={2016} +} + @book{Byrn71, Author = {Byrne, Donn Erwin}, Title = {The Attraction Paradigm}, @@ -695,7 +723,7 @@ @article{BlockGrund2014 issue = {2}, year = {2014}, pages = {189--212}, - URL = {http://journals.cambridge.org/article_S2050124214000174}} + URL = {https://journals.cambridge.org/article_S2050124214000174}} @article{BSS2019, title={Forms of dependence: {C}omparing {SAOMs} and {ERGMs} from basic principles}, @@ -727,7 +755,7 @@ @Manual{Stocnet address = {Groningen}, year = {2006}, version = {1.7}, - url = {http://www.gmw.rug.nl/~stocnet/} + url = {https://www.gmw.rug.nl/~stocnet/} } @article{BoccalettiEtAl2014, @@ -761,7 +789,7 @@ @article{boero2005 number = {4}, pages = {6}, year = {2005}, - URL = {http://jasss.soc.surrey.ac.uk/8/4/6.html}} + URL = {https://jasss.soc.surrey.ac.uk/8/4/6.html}} @book{Bollobas, @@ -794,7 +822,7 @@ @InCollection{Bonacich1972b @article{BoormanWhite1976, title={Social structure from multiple networks. {II. R}ole structures}, - author={Boorman, Scott A and White, Harrison C}, + author={Boorman, Scott A. and White, Harrison C.}, journal={American Journal of Sociology}, pages={1384--1446}, volume={81}, @@ -954,7 +982,8 @@ @book{BorgattiEverettJohnson2018 @book{BEJA2022, title={Analyzing social networks using R}, - author={Borgatti, Stephen P and Everett, Martin G and Johnson, Jeffrey C and Agneessens, Filip}, + author={Borgatti, Stephen P. and Everett, Martin G. + and Johnson, Jeffrey C. and Agneessens, Filip}, year={2022}, Publisher = {Sage Publications}, Address = {London, Thousand Oaks, New Delhi, Singapore} @@ -974,7 +1003,7 @@ @INCOLLECTION{BowmanShenton85 ADDRESS = "New York" } -@inbook{BowmanShenton2014, +@incollection{BowmanShenton2014, author = {Bowman, K. O. and Shenton, L. R.}, publisher = {Wiley}, isbn = {9781118445112}, @@ -1008,7 +1037,7 @@ @article{BracegirdleReimer2022 @incollection{BrandesFreemanWagner2014, title={Social Networks}, - author={Brandes, Ulrik and Freeman, Linton C and Wagner, Dorothea}, + author={Brandes, Ulrik and Freeman, Linton C. and Wagner, Dorothea}, booktitle={Handbook of graph drawing visualization}, editor={Roberto Tamassia}, publisher={CRC Press}, @@ -1115,7 +1144,7 @@ @article{BGS82 @article{Burt1978, title={Cohesion versus structural equivalence as a basis for network subgroups}, - author={Burt, Ronald S}, + author={Burt, Ronald S.}, journal={Sociological Methods \& Research}, volume={7}, pages={189--212}, @@ -1157,7 +1186,7 @@ @ARTICLE{Burt2000 @article{Burt2004, title={Structural holes and good ideas}, - author={Burt, Ronald S}, + author={Burt, Ronald S.}, journal={American Journal of Sociology}, volume={110}, issue={2}, @@ -1165,21 +1194,20 @@ @article{Burt2004 year={2004}} @book{Burt2005, - title={Brokerage and closure: An introduction to social capital}, - author={Burt, Ronald S}, + title={Brokerage and Closure: An Introduction to Social Capital}, + author={Burt, Ronald S.}, year={2005}, publisher={Oxford University Press} } @article{BurtRonchi2007, title={Teaching executives to see social capital: Results from a field experiment}, - author={Burt, Ronald S and Ronchi, Don}, + author={Burt, Ronald S. and Ronchi, Don}, journal={Social Science Research}, volume={36}, - number={3}, + issue={3}, pages={1156--1183}, - year={2007}, - publisher={Elsevier} + year={2007} } @article{BushEA1997, @@ -1319,6 +1347,18 @@ @article{Bergm2014 url = {https://www.jstatsoft.org/v61/i02/}, } +@article{Bergm2022, + title={Statistical Network Analysis with {Bergm}}, + volume={104}, + url={https://www.jstatsoft.org/index.php/jss/article/view/v104i01}, + doi={10.18637/jss.v104.i01}, + number={1}, + journal={Journal of Statistical Software}, + author={Caimo, Alberto and Bouranis, Lampros and Krause, Robert and Friel, Nial}, + year={2022}, + pages={1--23} +} + @article{CalvoJackson04, Author = {A. Calvo-Armengol and M. O. Jackson }, Title = {The Effects of Social Networks on Employment and Inequality}, @@ -1505,9 +1545,21 @@ @article{ChristakisFowler07 year = {2007}, pages ={370--379}} + +@article{ChristakisFowler2013, + author ={Nicholas A. Christakis and James D. Fowler}, + title = {Social contagion theory: + {Examining} dynamic social networks and human behavior}, + journal = {Statistics in Medicine}, + volume = 32, + year = {2013}, + pages ={556--577} +} + + @book{Cillessen11, title={Popularity in the peer system}, - author={Cillessen, Antonius H. N. and Schwartz, David and Mayeux, Lara}, + author={Cillessen, Antonius H.N. and Schwartz, David and Mayeux, Lara}, year={2011}, publisher={Guilford Press}, address={New York} @@ -1548,8 +1600,7 @@ @article{CohenColeFletcher2008 volume={27}, issue={5}, pages={1382--1387}, - year={2008}, - publisher={Elsevier} + year={2008} } @article{CohnBecker2003, @@ -1651,7 +1702,16 @@ @book{Coombs1964 year = 1964} - +@article{CCF2016, + author = {Leonardo Corbo and Raffaele Corrado and Simone Ferriani}, + title ={A New Order of Things: {N}etwork Mechanisms of Field Evolution + in the Aftermath of an Exogenous Shock}, + journal = {Organization Studies}, + volume = {37}, + issue= {3}, + pages = {323--348}, + year = {2016} +} @article{CornfieldTukey56, @@ -1675,8 +1735,8 @@ @article{Cox1990 } @book{CoxDonnelly2011, - title={Principles of applied statistics}, - author={Cox, David Roxbee and Donnelly, Christl A}, + title={Principles of Applied Statistics}, + author={Cox, David Roxbee and Donnelly, Christl A.}, year={2011}, publisher={Cambridge University Press} } @@ -1695,7 +1755,7 @@ @article{CoxWermuth2004 @book{CrossleyEA2015, title={Social Network Analysis for Ego-Nets}, author={Crossley, Nick and Bellotti, Elisa and Edwards, Gemma and - Koskinen, Johan and Tranmer, Mark and Everett, Martin G}, + Koskinen, Johan and Tranmer, Mark and Everett, Martin G.}, year={2015}, publisher={Sage}, address={London, Thousand Oaks, New Delhi, Singapore} @@ -1802,7 +1862,7 @@ @INCOLLECTION{Davis79 PUBLISHER = "Academic Press", YEAR = "1979", pages={51--62}, -EDITOR = "Paul W. Holland and Sameul Leinhardt", +EDITOR = "Paul W. Holland and Samuel Leinhardt", ADDRESS = "New York" } @@ -1826,8 +1886,10 @@ @article{deFreslon2020 } @article{delaHayeEA2013, - title={Selection and influence mechanisms associated with marijuana initiation and use in adolescent friendship networks}, - author={la Haye, Kayla and Green, Harold D and Kennedy, David P and Pollard, Michael S and Tucker, Joan S}, + title={Selection and influence mechanisms associated with marijuana initiation + and use in adolescent friendship networks}, + author={{de la Haye}, Kayla and Green, Harold D. and Kennedy, David P. + and Pollard, Michael S. and Tucker, Joan S.}, journal={Journal of Research on Adolescence}, volume={23}, number={3}, @@ -1877,7 +1939,7 @@ @article{deFederico2003 journal ={Redes}, year = 2003, volume = 4, -url = {http://revista-redes.rediris.es}} +url = {https://revista-redes.rediris.es}} @book{DegenneForse1999, author = {Alain Degenne and Michel Fors\'{e}}, @@ -1888,7 +1950,7 @@ @book{DegenneForse1999 @article{delaHayeRMW11, - Author = {Kayla de la Haye and Garry Robins and Philip Mohr and Carlene Wilson}, + Author = {Kayla {de la Haye} and Garry Robins and Philip Mohr and Carlene Wilson}, Title = {Homophily and Contagion as Explanations for Weight Similarities Among Adolescent Friends}, Journal = {Journal of Adolescent Health}, Volume = {49}, @@ -1909,8 +1971,9 @@ @article{delaHayeETAl2017 @article{delaHayeEA2015, title={Befriending risky peers: factors driving adolescents’ selection of friends with similar marijuana use}, - author={De la Haye, Kayla and Green, Harold D and Pollard, Michael S and Kennedy, David P and Tucker, Joan S}, - journal={Journal of youth and adolescence}, + author={{de la Haye}, Kayla and Green, Harold D. and Pollard, Michael S. +and Kennedy, David P. and Tucker, Joan S.}, + journal={Journal of Youth and Adolescence}, volume={44}, number={10}, pages={1914--1928}, @@ -1920,8 +1983,9 @@ @article{delaHayeEA2015 @article{delaHayeEA2019, title={Smoking diffusion through networks of diverse, urban american adolescents over the high school period}, - author={de la Haye, Kayla and Shin, Heesung and Vega Yon, George G and Valente, Thomas W}, - journal={Journal of health and social behavior}, + author={{de la Haye}, Kayla and Shin, Heesung and + Vega Yon, George G. and Valente, Thomas W.}, + journal={Journal of Health and Social Behavior}, volume={60}, number={3}, pages={362--376}, @@ -2028,7 +2092,7 @@ @article{DeVries1998 @book{DickisonMagnaniRossi2016, title={Multilayer social networks}, - author={Dickison, Mark E and Magnani, Matteo and Rossi, Luca}, + author={Dickison, Mark E. and Magnani, Matteo and Rossi, Luca}, year={2016}, publisher={Cambridge University Press}, address = {Cambridge} @@ -2037,7 +2101,8 @@ @book{DickisonMagnaniRossi2016 @article{DijkstraEtAl2010, title={Basking in reflected glory and its limits: {W}hy adolescents hang out with popular peers}, - author={Dijkstra, Jan Kornelis and Cillessen, Antonius HN and Lindenberg, Siegwart and Veenstra, Ren{\'e}}, + author={Dijkstra, Jan Kornelis and Cillessen, Antonius H.N. + and Lindenberg, Siegwart and Veenstra, Ren{\'e}}, journal={Journal of Research on Adolescence}, volume={20}, pages={942--958}, @@ -2056,7 +2121,7 @@ @article{DijkstraLVSICH10 @article{DijkstraEA13, title={Popularity and adolescent friendship networks: Selection and influence dynamics}, - author={Dijkstra, Jan Kornelis and Cillessen, Antonius HN and Borch, Casey}, + author={Dijkstra, Jan Kornelis and Cillessen, Antonius H.N. and Borch, Casey}, journal={Developmental Psychology}, volume={49}, issue={7}, @@ -2072,6 +2137,29 @@ @article{DiPreteForristal1994 Pages = {331--357}, Year = {1994} } +@article{DittrichLeendersMulder2020, + title={Network autocorrelation modeling: {Bayesian} techniques for estimating and testing multiple network autocorrelations}, + author={Dittrich, Dino and Leenders, Roger Th.A.J. and Mulder, Joris}, + journal={Sociological Methodology}, + volume={50}, + issue={1}, + pages={168--214}, + year={2020} +} + + + +@article{DiviakSnijdersDijkstra2018, + title={Structure, multiplexity, and centrality in a corruption network: + {The Czech Rath} affair}, + author={Tom\'{a}\v{s} Divi\'{a}k and Tom A.B. Snijders and Jan K. Dijkstra}, + journal={Trends in Organized Crime}, + volume={22}, + pages={274--297}, + year={2018} +} + + @phdthesis{Dolgova2019, title={On Getting Along and Getting Ahead: {H}ow Personality Affects Social Network Dynamics}, author={Dolgova, Evgenia}, @@ -2096,8 +2184,8 @@ @article{DonnatHolmes2018 } @book{DonovanMickey2019, - title={Bayesian statistics for beginners: {A} step-by-step approach}, - author={Donovan, Therese M and Mickey, Ruth M}, + title={Bayesian Statistics for Beginners: {A} Step-by-step Approach}, + author={Donovan, Therese M. and Mickey, Ruth M.}, year={2019}, publisher={Oxford University Press}, address={Oxford} @@ -2204,6 +2292,27 @@ @incollection{DorffWard2016 publisher={Oxford University Press} } +@article{DBW1982, + title={Network autocorrelation: {A} simulation study + of a foundational problem in regression and survey research}, + author={Dow, Malcolm M. and Burton, Michael L. and White, Douglas R.}, + journal={Social Networks}, + volume={4}, + issue={2}, + pages={169--200}, + year={1982} +} + +@article{DWB1983, + title={Multivariate modeling with interdependent network data}, + author={Dow, Malcolm M. and White, Douglas R. and Burton, Michael L.}, + journal={Behavior Science Research}, + volume={17}, + issue={3-4}, + pages={216--245}, + year={1983} +} + @article{Dunbar2008, title={Cognitive constraints on the structure and dynamics of social networks}, author={Dunbar, Robin IM}, @@ -2239,6 +2348,25 @@ @article{Duxbury2018 } +@article{Duxbury2023, + title={The problem of scaling in exponential random graph models}, + author={Duxbury, Scott W}, + journal={Sociological Methods \& Research}, + volume={52}, + issue={2}, + pages={764--802}, + year={2023} +} + +@article{Duxbury2024, + author = {Scott W. Duxbury}, + title ={Micro Effects on Macro Structure in Social Networks}, + journal = {Sociological Methodology}, + volume = {54}, + issue = {1}, + pages = {1--26}, + year = {2024} +} @article{DuxburyHaynie2020, title={School suspension and social selection: @@ -2329,10 +2457,20 @@ @article{EhrhardtEA05 title = {Emergence and resilience of social networks: a general theoretical framework}, journal = {oai:arXiv.org:physics/0504124}, - url = {http://arxiv.org/abs/physics/0504124}, + url = {https://arxiv.org/abs/physics/0504124}, year = {2005} } +@article{EllwardtEA2012, + title={The co-evolution of gossip and friendship in workplace social networks}, + author={Ellwardt, Lea and Steglich, Christian and Wittek, Rafael}, + journal={Social Networks}, + volume={34}, + issue={4}, + pages={623--633}, + year={2012} +} + @article{ElmerBodaStadtfeld2017, title={The co-evolution of emotional well-being with weak and strong friendship ties}, author={Elmer, Timon and Boda, Zs\'{o}fia and Stadtfeld, Christoph}, @@ -2392,13 +2530,23 @@ @ARTICLE{EmirbayerGoodwin94 } @book{Enders2022, - title={Applied Missing Data Dnalysis}, + title={Applied Missing Data Analysis}, author={Enders, Craig K}, year={2022}, - publisher={Guilford Publications}, + edition = {2nd}, + publisher={Guilford Press}, address={New York} } +@article{Enders2025, + title={Missing data: {An} update on the state of the art}, + author={Enders, Craig K}, + journal={Psychological Methods}, + year={2023}, + volume={30}, + pages={322--339} +} + @ARTICLE{EnnettBauman94, AUTHOR = "S.T. {Ennett} and K.E. {Bauman}", TITLE = {The Contribution of Influence and Selection to Adolescent Peer Group @@ -2466,6 +2614,17 @@ @article{EspinosaRadaEA2024 year={2024} } +@article{FararoDoreian1984, + title={Tripartite structural analysis: {G}eneralizing the {Breiger-Wilson} formalism}, + author={Fararo, Thomas J. and Doreian, Patrick}, + journal={Social Networks}, + volume={6}, + issue={2}, + pages={141--175}, + year={1984} +} + + @Article{Faust97, author = {Faust, Katherine}, title = {Centrality in affiliation networks}, @@ -2520,7 +2679,7 @@ @phdthesis{Faye2013PhD das {A}llmende-{P}roblem einer {D}{\"o}rfergemeinschaft im {N}ordwesten {S}enegals}, author={Faye, Malick}, year={2013}, - url={http://oops.uni-oldenburg.de/1617/}, + url={https://oops.uni-oldenburg.de/1617/}, school={Universit{\"a}t Oldenburg} } @@ -2569,18 +2728,17 @@ @article{Feld82 @article{FeldCarter2002, title={Detecting measurement bias in respondent reports of personal networks}, - author={Feld, Scott L and Carter, William C}, + author={Feld, Scott L. and Carter, William C.}, journal={Social Networks}, volume={24}, issue={4}, pages={365--383}, - year={2002}, - publisher={Elsevier} + year={2002} } @article{FeldElmore1982, title={Patterns of sociometric choices: Transitivity reconsidered}, - author={Feld, Scott L and Elmore, Richard}, + author={Feld, Scott L. and Elmore, Richard}, journal={Social Psychology Quarterly}, volume={45}, issue={2}, @@ -2589,7 +2747,7 @@ @article{FeldElmore1982 } @INCOLLECTION{FeldGrofman2009, - AUTHOR = {Feld, Scott L and Grofman, Bernard}, + AUTHOR = {Feld, Scott L. and Grofman, Bernard}, TITLE = {Homophily and the focused organization of ties}, BOOKTITLE = {The Oxford Handbook of Analytical Sociology}, PUBLISHER = {Oxford University Press}, @@ -2739,6 +2897,17 @@ @article{CaronFox2017 year={2017} } +@article{FowlerChristakis2008, +title = {Estimating peer effects on health in social networks: + {A} response to Cohen-Cole and Fletcher; and Trogdon, Nonnemaker, and Pais}, +journal = {Journal of Health Economics}, +volume = {27}, +issue = {5}, +pages = {1400-1405}, +year = {2008}, +author = {James D. Fowler and Nicholas A. Christakis} +} + @Article{Frank80, author = {Frank, Ove}, title = {Transitivity in Stochastic Graphs and Digraphs}, @@ -2780,6 +2949,16 @@ @article{FrankZhao2005 year={2005} } +@article{FrankenBT2023, + title={Kudos make you run! {How} runners influence each other + on the online social network {Strava}}, + author={Franken, Rob and Bekhuis, Hidde and Tolsma, Jochem}, + journal={Social Networks}, + volume={72}, + pages={151--164}, + year={2023} +} + @article{ FreedmanLane83, @@ -2790,6 +2969,16 @@ @article{ Pages = {292--298}, Year = {1983} } +@article{Freeman1978, + title={Segregation in social networks}, + author={Freeman, Linton C.}, + journal={Sociological Methods \& Research}, + volume={6}, + issue={4}, + pages={411--429}, + year={1978} +} + @ARTICLE{Freeman79, AUTHOR="Linton C. {Freeman}", TITLE = "Centrality in networks: I. Conceptual clarification", @@ -2857,7 +3046,7 @@ @article{freeman1987cognitive } @book{FreemanWhiteRomney1989, - title={Research methods in social network analysis}, + title={Research Methods in Social Network Analysis}, author={Linton C. Freeman and Douglas R. White and A. Kimball Romney}, year={1989}, publisher={George Mason University Press}, @@ -2893,8 +3082,8 @@ @ARTICLE{Friedkin01 } @book{FriedkinJohnsen2011, - title={Social influence network theory: {A} sociological examination of small group dynamics}, - author={Friedkin, Noah E and Johnsen, Eugene C}, + title={Social Influence Network Theory: {A} Sociological Examination of Small Group Dynamics}, + author={Friedkin, Noah E. and Johnsen, Eugene C.}, year={2011}, publisher={Cambridge University Press}, address={Cambridge, etc.} @@ -2969,13 +3158,12 @@ @article{Gasparrini2012 @article{Geary1954, title={The contiguity ratio and statistical mapping}, - author={Geary, Robert C}, - journal={The incorporated statistician}, + author={Geary, Robert C.}, + journal={The Incorporated Statistician}, volume={5}, - number={3}, + issue={3}, pages={115--146}, - year={1954}, - publisher={JSTOR} + year={1954} } @@ -3117,14 +3305,44 @@ @Article{Giuliani2013 pages = {1406--1419}, } +@article{GZFA2009, + author = {Anna Goldenberg and Alice X. Zheng and Stephen E. Fienberg and + Edoardo M. Airoldi}, + title = {A Survey of Statistical Network Models}, + journal = {Foundations and Trends in Machine Learning}, + year={2009}, + volume = {2}, + pages = {129--233} +} + +@BOOK{Goldstein2011, +AUTHOR = "Harvey Goldstein", +TITLE = {Multilevel Statistical Models}, +EDITION={4th}, +PUBLISHER = "Edward Arnold", +YEAR = "2011", +ADDRESS = "London" +} + @article{Goldthorpe2001, Author = {John H. Goldthorpe}, Title = {Causation, statistics, and sociology}, Journal = {European Sociological Review}, Volume = {17}, Pages = {1--20}, - Year = {2001} } + Year = {2001} +} +@incollection{GollwitzerBargh2005, + title={Automaticity in goal pursuit}, + author={Gollwitzer, Peter M. and Bargh, John A.}, + booktitle={Handbook of Competence and Motivation}, + editor={A.J. Elliot and C.S. Dweck}, + pages = {624--646}, + PUBLISHER = "Guilford Press", + ADDRESS = "New York", + year={2005} +} @article{Goodman1961, Author = {Leo A. Goodman}, @@ -3278,8 +3496,8 @@ @Article{Greenan15 @phdthesis{Greenan2015, author={Charlotte C. Greenan}, -title={Evolving Social Network Analysis: developments in statistical methodology - for dynamic stochastic actor-oriented models}, +title={Evolving Social Network Analysis: Developments in Statistical Methodology + for Dynamic Stochastic Actor-oriented Models}, school={University of Oxford}, year={2015} } @@ -3391,7 +3609,7 @@ @book{Hallinan74 @article{Hallinan1979, - author = {M.T. Hallinan}, + author = {Maureen T. Hallinan}, year = {1979}, title = {The process of friendship formation}, journal = {Social Networks}, @@ -3413,7 +3631,7 @@ @article{HamerleSingerNagl1993 @article{Hamming1950, title={Error detecting and error correcting codes}, author={Hamming, Richard W}, - journal={Bell System technical journal}, + journal={Bell System Technical Journal}, volume={29}, issue={2}, pages={147--160}, @@ -3428,9 +3646,19 @@ @book{HosmerLemeshowMay2008 edition = {2nd}, year = {2008} } +@article{HanHsiehKo2021, + title={Spatial modeling approach for dynamic network formation and interactions}, + author={Han, Xiaoyi and Hsieh, Chih-Sheng and Ko, Stanley I.M.}, + journal={Journal of Business \& Economic Statistics}, + volume={39}, + issue={1}, + pages={120--135}, + year={2021} +} + @incollection{HannekeXing2007, title={Discrete temporal models of social networks}, - author={Hanneke, Steve and Xing, Eric P}, + author={Hanneke, Steve and Xing, Eric P.}, booktitle={Statistical network analysis: Models, issues, and new directions}, pages={115--125}, year={2007}, @@ -3470,7 +3698,7 @@ @Article{HandcockHunter06 @article{HandcockGile2010, title={Modeling social networks from sampled data}, - author={Mark S Handcock and Krista J Gile}, + author={Mark S. Handcock and Krista J. Gile}, journal={The Annals of Applied Statistics}, volume={4}, pages={5--25}, @@ -3511,14 +3739,23 @@ @TechReport{HarrisEA2003 title ={The National Longitudinal Study of Adolescent Health: Research Design}, institution = {University of North Carolina}, address={Chapel Hill}, - url = {http://www.cpc.unc.edu/projects/addhealth/design/}, + url = {https://www.cpc.unc.edu/projects/addhealth/design/}, year = 2003} +@article{HartupStevens1997, + title={Friendships and adaptation in the life course}, + author={Hartup, Willard W. and Stevens, Nan}, + journal={Psychological Bulletin}, + volume={121}, + issue={3}, + pages={355--370}, + year={1997} +} @Article{HauckDonner77, - author = {Hauck, W.W., Jr. and A. Donner}, - title = {Wald's test as applied to hypotheses in logit analysis.}, + author = {{Hauck, Jr.}, Walter W. and Allan Donner}, + title = {Wald's test as applied to hypotheses in logit analysis}, journal = {Journal of the American Statistical Association}, year = 1977, volume = 72, @@ -3533,6 +3770,16 @@ @ARTICLE{Haynie01 PAGES = "1013--1057" } +@article{Haynie2002, + title={Friendship networks and delinquency: {The} relative nature of peer delinquency}, + author={Haynie, Dana L}, + journal={Journal of Quantitative criminology}, + volume={18}, + issue={2}, + pages={99--134}, + year={2002} +} + @article{Heckathorn1997, Author = {Douglas D. Heckathorn}, Title = {Respondent-Driven Sampling: A New Approach to the Study of Hidden Populations}, @@ -3621,7 +3868,7 @@ @article{Heine2005 number = {4}, pages = {4}, year = {2005}, - URL = {http://jasss.soc.surrey.ac.uk/8/4/4.html}, + URL = {https://jasss.soc.surrey.ac.uk/8/4/4.html}, } @article{HelbingBalietti2011, @@ -3631,7 +3878,7 @@ @article{HelbingBalietti2011 Interactive Systems Design}, Journal = "Santa Fe Institute Working Paper Series", Volume = "11-06-024", - URL = "http://www.santafe.edu/media/workingpapers/11-06-024.pdf (retrieved 6 August 2013)", + URL = "https://www.santafe.edu/media/workingpapers/11-06-024.pdf (retrieved 6 August 2013)", YEAR = "2011" } @@ -3685,7 +3932,8 @@ @article{HintzeNelson1998 @article{HWBJL2015, title={Research note: {T}he consequences of different methods for handling missing network data in stochastic actor based models}, - author={Hipp, John R and Wang, Cheng and Butts, Carter T and Jose, Rupa and Lakon, Cynthia M}, + author={Hipp, John R. and Wang, Cheng and Butts, Carter T. and + Jose, Rupa and Lakon, Cynthia M.}, journal={Social Networks}, volume={41}, pages={56--71}, @@ -3725,7 +3973,7 @@ @article{HRH02 @article{HLL83, -author = {P. Holland and K.B. Laskey and S. Leinhardt}, +author = {Paul W. Holland and Kathryn Blackmond Laskey and Samuel Leinhardt}, year = 1983, title = {Stochastic blockmodels: Some first steps}, journal = {Social Networks}, @@ -3752,7 +4000,7 @@ @ARTICLE{HollandLeinhardt1971 @article{HollandLeinhardt1973, title={The structural implications of measurement error in sociometry}, - author={Holland, Paul W and Leinhardt, Samuel}, + author={Holland, Paul W. and Leinhardt, Samuel}, journal={Journal of Mathematical Sociology}, volume={3}, pages={85--111}, @@ -4073,6 +4321,15 @@ @article{IacobucciWasserman1990 year={1990} } +@misc{IgarashiKoskinen2020, + title={Overchoosing: A Mechanism of Tie-Formation in Social Networks}, + url={osf.io/preprints/psyarxiv/47q39_v1}, + DOI={10.31234/osf.io/47q39}, + publisher={PsyArXiv}, + author={Igarashi, Tasuku and Koskinen, Johan K}, + year={2020}, + month={June} +} @article{IoannidesLoury04, Author = {Y. Ioannides and L.D. Loury}, @@ -4182,7 +4439,7 @@ @article{JacksonRogers2007 @article{JacksonWatts2002, title={The evolution of social and economic networks}, - author={Jackson, Matthew O and Watts, Alison}, + author={Jackson, Matthew O. and Watts, Alison}, journal={Journal of Economic Theory}, volume={106}, issue={2}, @@ -4192,7 +4449,7 @@ @article{JacksonWatts2002 @article{JacksonWatts2002formation, title={On the formation of interaction networks in social coordination games}, - author={Jackson, Matthew O and Watts, Alison}, + author={Jackson, Matthew O. and Watts, Alison}, journal={Games and Economic Behavior}, volume={41}, issue={2}, @@ -4244,12 +4501,21 @@ @article{JGN01 @article{Johnsen85, title={Network macrostructure models for the Davis-Leinhardt set of empirical sociomatrices}, author={Johnsen, Eugene C}, - journal={Social networks}, + journal={Social Networks}, volume={7}, - number={3}, + issue={3}, pages={203--224}, - year={1985}, - publisher={Elsevier} + year={1985} +} + +@article{Johnsen1986, + title={Structure and process: {Agreement} models for friendship formation}, + author={Johnsen, Eugene C}, + journal={Social Networks}, + volume={8}, + issue={3}, + pages={257--306}, + year={1986} } @article{Jones1983, @@ -4359,7 +4625,7 @@ @INCOLLECTION{Kalter2022 @TechReport{CILS4EU, title={Children of Immigrants Longitudinal Survey in Four {E}uropean Countries ({CILS4EU}): {M}otivation, Aims, and Design}, - author={Kalter, Frank and Heath, Anthony F and Hewstone, Miles and Jonsson, Janne O + author={Kalter, Frank and Heath, Anthony F. and Hewstone, Miles and Jonsson, Janne O. and Kalmijn, Matthijs and Kogan, Irena and {van Tubergen}, Frank}, institution={GESIS: GESIS Data Archive}, address={Cologne}, @@ -4465,7 +4731,7 @@ @article{KatzWilson1956 @Book{Kapferer72, author = {Bruce Kapferer}, - title = {Strategy and transaction in an African factory}, + title = {Strategy and Transaction in an African Factory}, publisher = {Manchester University Press}, address = {Manchester}, year = {1972}} @@ -4676,7 +4942,7 @@ @article{KivelaEtAl2014 @article{Kleinbaum2015, title={An altercentric perspective on the origins of brokerage in social networks: {How} perceived empathy moderates the self-monitoring effect}, - author={Kleinbaum, Adam M and Jordan, Alexander H and Audia, Pino G}, + author={Kleinbaum, Adam M. and Jordan, Alexander H. and Audia, Pino G.}, journal={Organization Science}, volume={26}, issue={4}, @@ -4732,6 +4998,15 @@ @article{KnechtBurkEA2010 pages={475--487} } +@book{KnokeEA2021, + title={Multimodal Political Networks}, + author={Knoke, David and Diani, Mario and Hollway, James and Christopoulos, Dimitris}, + volume={50}, + year={2021}, + Address = {Cambridge}, + publisher={Cambridge University Press} +} + @article{Knudsen2008, title = "Reference groups and variable risk strategies ", journal = "Journal of Economic Behavior and Organization ", @@ -4781,7 +5056,7 @@ @PhdThesis{Koskinen04 @article{KRP2010, title={Analysing exponential random graph (p-star) models with missing data using {Bayesian} data augmentation}, - author={Koskinen, Johan H and Robins, Garry L and Pattison, Philippa E}, + author={Koskinen, Johan H. and Robins, Garry L. and Pattison, Philippa E.}, journal={Statistical Methodology}, volume={7}, issue={3}, @@ -4792,7 +5067,7 @@ @article{KRP2010 @article{KRWP2013, title={Bayesian analysis for partially observed network data, missing ties, attributes and actors}, - author={Koskinen, Johan H and Robins, Garry L and Wang, Peng and Pattison, Philippa E}, + author={Koskinen, Johan H. and Robins, Garry L. and Wang, Peng and Pattison, Philippa E.}, journal={Social Networks}, volume={35}, issue={4}, @@ -4814,6 +5089,7 @@ @incollection{KoskinenSnijders2013 year= 2013, title = {Longitudinal models}, pages={130--140}, +chapter = {11}, booktitle={Exponential Random Graph Models}, editor= {Dean Lusher and Johan Koskinen and Garry Robins}, PUBLISHER = "Cambridge University Press", @@ -4847,6 +5123,7 @@ @article{KoskinenSnijders2023 year={2023}, volume = 186, pages = {376--400}, + eprint={https://academic.oup.com/jrsssa/advance-article-pdf/doi/10.1093/jrsssa/qnac009/48832849/qnac009.pdf}, journal={Journal of the Royal Statistical Society, Series A} } @@ -4944,9 +5221,19 @@ @article{KrackhardtStern1988 year={1988} } + +@PhDThesis{Krause2019, + title={Multiple imputation for missing network data}, + author={Krause, Robert}, + School = {University of Groningen, NL}, + url = {https://research.rug.nl/files/103522816/Complete_thesis.pdf}, + year={2019} +} + + @article{KHS2018, title={Multiple imputation for longitudinal network data}, - author={Krause, Robert W and Huisman, Mark E and Snijders, Tom A. B.}, + author={Krause, Robert W. and Huisman, Mark E. and Snijders, Tom A.B.}, journal={Italian Journal of Applied Statistics}, year={2018}, volume={30}, @@ -4955,7 +5242,8 @@ @article{KHS2018 @inproceedings{KHSS2018, title={Missing network data: {A} comparison of different imputation methods}, - author={Krause, Robert W and Huisman, Mark E and Steglich, Christian E G and Snijders, Tom A. B.}, + author={Krause, Robert W. and Huisman, Mark E. and Steglich, Christian E.G. + and Snijders, Tom A.B.}, booktitle={Proceedings of the 2018 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining}, year={2018} @@ -4964,13 +5252,27 @@ @inproceedings{KHSS2018 @article{KHSS2020, title = "Missing data in cross-sectional networks -- {An} extensive comparison of missing data treatment methods", - author = "Robert W. Krause and Mark E. Huisman and Christian E.G. Steglich and Tom A.B. Snijders", + author = "Robert W. Krause and Mark E. Huisman and + Christian E.G. Steglich and Tom A.B. Snijders", journal = "Social Networks", volume = "62", pages = "99--112", year = "2020" } + +@incollection{KrauseHuisman2024, + title={Missing Network Data}, + author={Krause, Robert W and Huisman, Mark}, + pages={599--609}, + year={2024}, + booktitle={The Sage Handbook of Social Network Analysis}, + editor= {John McLevey and John Scott and Peter J. Carrington}, + publisher={Sage Publications}, + address = {London, Thousand Oaks (CA), New Delhi, Singapore} +} + + @article{KretzschmarMorris1996, title={Measures of concurrency in networks and the spread of infectious disease}, author={Kretzschmar, Mirjam and Morris, Martina}, @@ -4981,6 +5283,17 @@ @article{KretzschmarMorris1996 year={1996} } +@article{KretschmerLeszczensky2021, + author = {Kretschmer, David and Leszczensky, Lars}, + title = {In-Group Bias or Out-Group Reluctance? + The Interplay of Gender and Religion in Creating Religious Friendship Segregation among Muslim Youth}, + journal = {Social Forces}, + volume = {100}, + issue = {3}, + pages = {1307--1332}, + year = {2021} +} + @article{Krijnen94, Author = {Krijnen, Wim P.}, @@ -4996,7 +5309,7 @@ @article{Krijnen94 @article{krivitsky2011, title={Adjusting for network size and composition effects in exponential-family random graph models}, - author={Krivitsky, Pavel N and Handcock, Mark S and Morris, Martina}, + author={Krivitsky, Pavel N. and Handcock, Mark S. and Morris, Martina}, journal={Statistical Methodology}, volume={8}, issue={4}, @@ -5024,7 +5337,7 @@ @article{KHRH2009 @article{KrivitskyKolaczyk2015, title={On the question of effective sample size in network modeling: {An} asymptotic inquiry}, - author={Kolaczyk, Eric D and Krivitsky, Pavel N}, + author={Kolaczyk, Eric D. and Krivitsky, Pavel N.}, journal={Statistical Science}, volume={30}, issue={2}, @@ -5096,7 +5409,8 @@ @article{LabunWittekSteglich2016 @article{LakonEA2015, title={Simulating dynamic network models and adolescent smoking: the impact of varying peer influence and peer selection}, - author={Lakon, Cynthia M and Hipp, John R and Wang, Cheng and Butts, Carter T and Jose, Rupa}, + author={Lakon, Cynthias M. and Hipp, John R. and Wang, Cheng and + Butts, Carter T. and Jose, Rupa}, journal={American Journal of Public Health}, volume={105}, number={12}, @@ -5105,6 +5419,16 @@ @article{LakonEA2015 publisher={American Public Health Association} } +@article{LandisEA2022, + title={Revisiting extraversion and leadership emergence: {A} social network churn perspective}, + author={Landis, Blaine and Jachimowicz, Jon M and Wang, Dan J and Krause, Robert W}, + journal={Journal of Personality and Social Psychology}, + volume={123}, + issue={4}, + pages={811--829}, + year={2022} +} + @article{ LapointeGarland01, Author = {Lapointe, F. J. and Garland, T.}, @@ -5141,14 +5465,15 @@ @article{ @incollection{LaumannEA1989, title={The boundary specification problem in network analysis}, - author={Laumann, Edward O and Marsden, Peter V and Prensky, David}, + author={Laumann, Edward O. and Marsden, Peter V. and Prensky, David}, booktitle={Applied Network Analysis}, editor= {Ronald S. Burt and Michael J. Minor}, publisher={Sage Publications}, address = {Beverly Hills}, pages={18--34}, year={1983}, - note={Reprinted in Freeman, White \& Romney (1989), pp.\ 61--87.} + note={Reprinted in Freeman, White \& Romney (1989), + "Research Methods in Social Network Analysis", pp.\ 61--87.} } @@ -5352,17 +5677,17 @@ @article{ Year = {2000} } @article{LehmannEA2015, - title={Predicting the trajectory of the evolving international cyber regime: Simulating the growth of a social network}, + title={Predicting the trajectory of the evolving international cyber regime: + {Simulating} the growth of a social network}, author={Lehmann, Todd C and Rolfsen, James A and Clark, Terry D}, journal={Social Networks}, volume={41}, pages={72--84}, - year={2015}, - publisher={Elsevier} + year={2015} } @BOOK{LehmannRomano2005, - AUTHOR = {Lehmann, E.L and Romano, J.P.}, + AUTHOR = {Lehmann, E.L. and Romano, J.P.}, TITLE = {Testing Statistical Hypotheses}, PUBLISHER = {Springer}, YEAR = {2005}, @@ -5370,7 +5695,7 @@ @BOOK{LehmannRomano2005 EDITION = {3rd} } @InCollection{Lepkowski89, - author = {J. M. Lepkowski}, + author = {J.M. Lepkowski}, title = {Treatment of wave nonresponse in panel surveys}, booktitle = {Panel Surveys}, pages = {348--374}, @@ -5476,7 +5801,7 @@ @article{LightEtAl2013 volume = {23}, issue = {3}, issn = {1532-7795}, -url = {http://dx.doi.org/10.1111/jora.12064}, +url = {https://dx.doi.org/10.1111/jora.12064}, doi = {10.1111/jora.12064}, pages = {487--499}, year = {2013}, @@ -5484,7 +5809,7 @@ @article{LightEtAl2013 @article{LightEtAl2019, title={Friend selection and influence effects for first heavy drinking episode in adolescence}, - author={Light, John M and Mills, Kathryn L and Rusby, Julie C and Westling, Erika}, + author={Light, John M. and Mills, Kathryn L. and Rusby, Julie C. and Westling, Erika}, journal={Journal of Studies on Alcohol and Drugs}, volume={80}, issue={3}, @@ -5493,7 +5818,7 @@ @article{LightEtAl2019 } @book{Lin2002, - title={Social capital: {A} theory of social structure and action}, + title={Social Capital: {A} Theory of Social Structure and Action}, author={Lin, Nan}, year={2002}, publisher={Cambridge University Press}, @@ -5562,6 +5887,37 @@ @INCOLLECTION{Lindenberg2001 ADDRESS = "New York" } +@article{Lindenberg2001Kyklos, + title={Intrinsic motivation in a new light}, + author={Lindenberg, Siegwart}, + journal={Kyklos}, + volume={54}, + issue={2-3}, + pages={317--342}, + year={2001} +} + +@article{Lindenberg2008, + title={Social rationality, semi-modularity and goal-framing: {What} is it all about?}, + author={Lindenberg, Siegwart}, + journal={Analyse \& Kritik}, + volume={30}, + issue={2}, + pages={669--687}, + year={2008} +} + +@incollection{Lindenberg2013, + title={Social Rationality, self-regulation, and well-being: + {The} regulatory significance of needs, goals, and the self}, + author={Siegwart Lindenberg}, + booktitle={The Handbook of Rational Choice Social Research}, + editor={Rafael Wittek and {Tom A.B.} Snijders and Victor Nee}, + publisher={Stanford University Press}, + pages={72--112}, + year={2013} +} + @Article{Lindgren2010, author = {Lindgren, Karl-Oskar}, title = {Dyadic regression in the presence of heteroscedasticity -- An @@ -5571,6 +5927,17 @@ @Article{Lindgren2010 pages = {xxx-xxx}, year = 2010} +@incollection{Lindsay2014, +author = {Lindsay, Bruce G.}, +publisher = {Wiley}, +isbn = {9781118445112}, +title = {Method of Moments}, +booktitle = {Wiley StatsRef: Statistics Reference Online}, +doi = {https://doi.org/10.1002/9781118445112.stat05908}, +url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/9781118445112.stat05908}, +eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1002/9781118445112.stat05908}, +year = {2014} +} @book{LittleRubin2002, author={Roderick J.A. Little and Donald B. Rubin}, @@ -5581,6 +5948,15 @@ @book{LittleRubin2002 address={Hoboken, NJ} } +@book{LittleRubin2019, + author={Roderick J.A. Little and Donald B. Rubin}, + year={2020}, + title={Statistical Analysis with Missing Data}, + edition = {3d}, + publisher={Wiley}, + address={Hoboken, NJ} +} + @article{Liu_etal2014, title={Stable matching with incomplete information}, author={Liu, Qingmin and Mailath, George J and Postlewaite, Andrew and Samuelson, Larry}, @@ -5631,10 +6007,10 @@ @article{LRT2016 @Article{LSST11, author = {Alessandro Lomi and Tom A. B. Snijders and - {Christian E. G.} Steglich and Vanina J. Torl\'{o}}, - title = {Why Are Some More Peer Than Others? - {Evidence} from a Longitudinal Study of Social Networks - and Individual Academic Performance}, + {Christian E.G.} Steglich and Vanina J. Torl\`{o}}, + title = {Why are some more peer than others? + {Evidence} from a longitudinal study of social networks + and individual academic performance}, journal = {Social Science Research}, year = 2011, volume = 40, @@ -5677,14 +6053,14 @@ @ARTICLE{Lospinoso2011 volume = 5, pages = {147--176}} % doi = {DOI: 10.1016/j.socnet.2010.03.001}, -% URL = {http://www.stats.ox.ac.uk/~lospinos}, +% URL = {https://www.stats.ox.ac.uk/~lospinos}, @Article{Lospinoso2011b, TITLE = {Goodness of Fit for Stochastic Actor Oriented Models}, AUTHOR = {Joshua A. Lospinoso}, JOURNAL = {Working paper}, YEAR = {2011}, - URL = {http://www.stats.ox.ac.uk/~lospinos} + URL = {https://www.stats.ox.ac.uk/~lospinos} } @@ -5709,7 +6085,7 @@ @Article{Lospinoso2010b AUTHOR = {Joshua A. Lospinoso}, Journal = {In progress}, YEAR = {2010}, - URL = {http://www.stats.ox.ac.uk/\%7Elospinos/pubs/RSienaTutorial.pdf} + URL = {https://www.stats.ox.ac.uk/\%7Elospinos/pubs/RSienaTutorial.pdf} } @@ -5770,6 +6146,17 @@ @article{Lubbers2003 year={2003} } +@article{LubbersEA2010, + title={Longitudinal analysis of personal networks. The case of Argentinean migrants in Spain}, + author={Lubbers, Miranda J. and Molina, Jos{\'e} Luis and + Lerner, J{\"u}rgen and Brandes, Ulrik and {\'A}vila, Javier and McCarty, Christopher}, + journal={Social Networks}, + volume={32}, + issue={1}, + pages={91--104}, + year={2010} +} + @article{Lyons2011, title={The spread of evidence-poor medicine via flawed social-network analysis}, author={Lyons, Russell}, @@ -5886,6 +6273,13 @@ @article{Manzo2010 year={2010} } +@book{Manzo2014, + title={Analytical Sociology: Actions and Networks}, + author={Manzo, Gianluca}, + year={2014}, + publisher={John Wiley \& Sons} +} + @INCOLLECTION{Manzo2022, AUTHOR = "Gianluca {Manzo}", TITLE = {Analytical sociology}, @@ -5970,6 +6364,15 @@ @InCollection{MarsdenGorman01 address = "New York", editor = {Ivar Berg and Arne L. Kalleberg}} +@article{Marsh1987, + title={The big-fish-little-pond effect on academic self-concept.}, + author={Marsh, Herbert W.}, + journal={Journal of Educational Psychology}, + volume={79}, + issue={3}, + pages={280--295}, + year={1987} +} @article{MarsiliEA04, author = {Matteo Marsili and Fernando Vega-Redondo and Frantisek Slanina}, @@ -5977,7 +6380,7 @@ @article{MarsiliEA04 journal = {Proceedings of the National Academy of Sciences, U.S.A}, volume = {101}, pages = {1439}, - url = {http://arxiv.org/abs/cond-mat/0307321}, + url = {https://arxiv.org/abs/cond-mat/0307321}, year = {2004} } @@ -6005,7 +6408,7 @@ @article{MRV2018 @book{MLVM2019, title={Conducting personal network research: {A} practical guide}, - author={McCarty, Christopher and Lubbers, Miranda J and Vacca, Raffaele + author={McCarty, Christopher and Lubbers, Miranda J. and Vacca, Raffaele and Molina, Jos{\'e} Luis}, year={2019}, address={New York, London}, @@ -6047,24 +6450,24 @@ @article{McCulloch1997 year = {1997}} -@INCOLLECTION{McFadden73, +@INCOLLECTION{McFadden74, AUTHOR = "Daniel {McFadden}", TITLE = {Conditional Logit Analysis of Qualitative Choice Behavior}, BOOKTITLE = "Frontiers in Econometrics", PAGES = "105--142", PUBLISHER = "Academic Press", -YEAR = "1973", +YEAR = "1974", EDITOR = "Paul Zarembka", ADDRESS = "New York" } -@article{mcfowland2023estimating, +@article{McFowlandShalizi2023, title={Estimating causal peer influence in homophilous social networks by inferring latent locations}, author={McFowland III, Edward and Shalizi, Cosma Rohilla}, journal={Journal of the American Statistical Association}, volume={118}, - number={541}, + issue={541}, pages={707--718}, year={2023} } @@ -6145,7 +6548,15 @@ @article{Mellon2024 pages={1--18} } - +@phdthesis{Mercken2009, + title={Influence or Selection; {D}ynamics of friendship networks and smoking behavior + in adolescence}, + author={ Mercken, Liesbeth}, + school={University of Maastricht}, + address={Maastricht}, + publisher={Universitaire Pers Maastricht}, + year={2009} +} @article{MerckenEA09, Author = {Liesbeth Mercken and Tom A. B. Snijders and Christian E. G. Steglich and Hein de Vries}, Title = {Dynamics of adolescent friendship networks and smoking behavior: @@ -6156,6 +6567,31 @@ @article{MerckenEA09 Year = {2009} } +@article{MerckenEA2010a, +title = {Dynamics of adolescent friendship networks and smoking behavior}, +journal = {Social Networks}, +volume = {32}, +issue = {1}, +pages = {72--81}, +year = {2010}, +author = {Liesbeth Mercken and Tom A.B. Snijders and Christian Steglich + and Erkki A. Vartiainen and Hein {de Vries}} +} + + + +@article{MerckenEA2010b, +title = {Smoking-based selection and influence in gender-segregated friendship networks: + a social network analysis of adolescent smoking}, +journal = {Addiction}, +volume = {105}, +issue = {7}, +pages = {1280--1289}, +year = {2010}, +author = {Liesbeth Mercken and Tom A.B. Snijders and Christian Steglich + and Erkki A. Vartiainen and Hein {de Vries}} +} + @article{MerckenCSHM2012, title={A longitudinal social network analysis of peer influence, peer selection, and smoking behavior among adolescents in {B}ritish schools}, @@ -6252,7 +6688,7 @@ @TechReport{minka1998inferring author={Minka, Thomas}, institution={MIT Media Lab}, year={1998}, - url={http://www.stat.cmu.edu/~minka/papers/gaussian.html} + url={https://www.stat.cmu.edu/~minka/papers/gaussian.html} } % No first names in published paper @@ -6269,7 +6705,7 @@ @article{MSIKCA02 @incollection{Minor1983, title={New directions in multiplexity analysis}, author={Minor, Michael J}, - booktitle={Applied network analysis}, + booktitle={Applied Network Analysis}, editor= {Ronald S. Burt and Michael J. Minor}, publisher={Sage Publications}, address = {Beverly Hills}, @@ -6288,7 +6724,7 @@ @article{MischePattison2000 note = "Relational analysis and institutional meanings: Formal models for the study of culture", issn = "0304-422X", doi = "DOI: 10.1016/S0304-422X(99)00024-8", -url = "http://www.sciencedirect.com/science/article/pii/S0304422X99000248", +url = "https://www.sciencedirect.com/science/article/pii/S0304422X99000248", author = "Ann Mische and Philippa Pattison" } @@ -6392,6 +6828,14 @@ @article{Moran1950 year={1950} } +@book{MorganWinship2015, + title={Counterfactuals and causal inference}, + author={Morgan, Stephen L. and Winship, Christopher}, + year={2015}, + publisher={Cambridge University Press}, + address={Cambridge, New York, New Delhi, Singapore} +} + @article{moss2008, title = {Alternative Approaches to the Empirical Validation of Agent-Based Models}, author = {Moss, Scott}, @@ -6401,7 +6845,7 @@ @article{moss2008 number = {1}, pages = {5}, year = {2008}, - URL = {http://jasss.soc.surrey.ac.uk/11/1/5.html}} + URL = {https://jasss.soc.surrey.ac.uk/11/1/5.html}} @article{MouwEntwisle2006, author = {Ted Mouw and Barbara Entwisle}, @@ -6432,10 +6876,10 @@ @article{MolmEA2007 } @book{Moreno34, - author = {Moreno, J. L.}, + author = {Moreno, Jacob L.}, year=1934, - title = {Who shall survive? A new approach to the problem of human -inter-relations}, + title = {Who Shall Survive? A New Approach to the Problem of Human +Inter-relations}, address={New York}, publisher={Beacon House} } @@ -6474,6 +6918,14 @@ @ARTICLE{MooreEA04 PAGES = "A26--A27" } +@article{MorenoJennings1938, + title={Statistics of social configurations}, + author={Moreno, Jacob L. and Jennings, Helen H.}, + journal={Sociometry}, + volume={1}, + pages={342--374}, + year={1938} +} @article{MorrisKretzschmar95, author = {Martina Morris and Miriam Kretzschmar}, @@ -6528,6 +6980,18 @@ @article{NassiShneiderman1973 pages = {12--26} } +@article{NealVeenstra2021, +title = {Network selection and influence effects on + children's and adolescents' internalizing behaviors and peer victimization: + {A} systematic review}, +journal = {Developmental Review}, +volume = {59}, +pages = {100944}, +year = {2021}, +author = {Jennifer Watling Neal and René Veenstra} +} + + @article{NetSci2013, Author = {Ulrik Brandes and Garry Robins and Ann Mc{C}ranie and Stanley Wasserman}, year={2013}, @@ -6549,7 +7013,7 @@ @article{NeuhausKalbfleisch1998 @article{Newman2002, author = {Mark E.J. Newman}, year={2002}, - title = {Assortative Mixing in Networks}, + title = {Assortative mixing in networks}, journal = {Physical Review Letters}, volume = {89}, issue = {28701}, @@ -6612,7 +7076,7 @@ @phdthesis{Niezink2018a title={Modeling the Dynamics of Networks and Continuous Behavior}, school = {University of Groningen}, address = {Groningen}, - url = {http://hdl.handle.net/11370/7272bbc5-47a5-497c-bf7b-ed64a57fd374}, + url = {https://hdl.handle.net/11370/7272bbc5-47a5-497c-bf7b-ed64a57fd374}, year = {2018} } @@ -6659,14 +7123,14 @@ @Manual{nlme @PhdThesis{Nordlie58, author = {P.G. Nordlie}, - title = {A longitudinal study of interpersonal attraction in a natural group setting}, + title = {A Longitudinal Study of Interpersonal Attraction in a Natural Group Setting}, school = {University of Michigan}, year = {1958}, } @BOOK{Norris97, - AUTHOR = "J. R. {Norris}", + AUTHOR = "J.R. {Norris}", TITLE = {Markov Chains}, PUBLISHER = "Cambridge University Press", YEAR = "1997", @@ -6703,6 +7167,16 @@ @ARTICLE{OettinDonnermeyer98 PAGES = "995--1026" } +@article{OgburnEA2024, + title={Causal inference for social network data}, + author={Ogburn, Elizabeth L. and Sofrygin, Oleg and Diaz, Ivan and Van der Laan, Mark J.}, + journal={Journal of the American Statistical Association}, + volume={119}, + issue={545}, + pages={597--611}, + year={2024} +} + @book{HaganForster2004, title={Bayesian Inference}, author={Anthony O'Hagan and Jonathan Forster}, @@ -6775,8 +7249,8 @@ @article{Oja87 @article{OsgoodEA2013, title={Peers and the emergence of alcohol use: {I}nfluence and selection processes in adolescent friendship networks}, - author={Osgood, D Wayne and Ragan, Daniel T and Wallace, Lacey and - ``Gest, Scott D and Feinberg, Mark E and Moody, James}, + author={Osgood, D. Wayne and Ragan, Daniel T. and Wallace, Lacey and + Gest, Scott D. and Feinberg, Mark E. and Moody, James}, journal={Journal of Research on Adolescence}, volume={23}, issue={3}, @@ -6795,17 +7269,17 @@ @article{Ostoic2018 @book{Ostoic2021, title={Algebraic Analysis of Social Networks: {M}odels, Methods and Applications Using {R}}, - author={Ostoic, J Antonio R}, + author={{J. Antonio Rivero} Ostoic}, year={2021}, publisher={Wiley}, address={New York} } -@Inbook{OudDelsing2010, - author="Oud, Johan H. L. and Delsing, Marc J. M. H.", +@InCollection{OudDelsing2010, + author="Oud, Johan H.L. and Delsing, Marc J.M.H.", editor="van Montfort, Kees and Oud, Johan H.L. and Satorra, Albert", title="Continuous Time Modeling of Panel Data by means of SEM", - bookTitle="Longitudinal Research with Latent Variables", + booktitle="Longitudinal Research with Latent Variables", year="2010", publisher="Springer Berlin Heidelberg", address="Berlin, Heidelberg", @@ -6893,7 +7367,7 @@ @article {PattisonWasserman99 number = {2}, publisher = {Blackwell Publishing Ltd}, issn = {2044-8317}, - url = {http://dx.doi.org/10.1348/000711099159053}, + url = {https://dx.doi.org/10.1348/000711099159053}, doi = {10.1348/000711099159053}, pages = {169--193}, year = {1999}, @@ -6977,6 +7451,25 @@ @incollection{PattisonSnijders2013 ADDRESS = "Cambridge" } +@article{PRSW2024, + title={Exponential random graph models and pendant-triangle statistics}, + author={Pattison, Philippa E. and Robins, Garry L. and Snijders, Tom A.B. and Wang, Peng}, + journal={Social Networks}, + volume={79}, + pages={187--197}, + year={2024} +} + +@article{PauksztatSalin2020, + AUTHOR={Pauksztat, Birgit and Salin, Denise }, + TITLE={Targets Social Relationships as Antecedents + and Consequences of Workplace Bullying: {A} Social Network Perspective}, + JOURNAL={Frontiers in Psychology}, + VOLUME={10}, + number={3077}, + YEAR={2020} +} + @article{PaulOMalley2013, Author = {Sudeshna Paul and A. James {O\`{}Malley}}, @@ -7085,6 +7578,13 @@ @book{Pissarides90 address = {Oxford}, Year = {1990} } + +Pfeffer, J. 1987. A resource dependence perspective on interorganizational relations. +In M. S. Mizruchi, & +M. Schwartz (Eds.), +Intercorporate relations: The structural analysis of business: 22-55. Cambridge, +UK: Cambridge University Press. + @InCollection{pfeffer1987resource, title={A resource dependence perspective on intercorporate relations}, author={Pfeffer, Jeffrey}, @@ -7118,7 +7618,7 @@ @article{Pflug90 @Book{Pflug96, author = {Georg Ch. Pflug}, - title = {Optimization of stochastic models}, + title = {Optimization of Stochastic Models}, publisher = {Kluwer}, year = 1996, address = {Boston} @@ -7169,7 +7669,7 @@ @article{PSH97 @Article{Polyak90, - author = {B. T. Polyak}, + author = {Boris T. Polyak}, title = {New method of stochastic approximation type}, journal = {Automation and Remote Control}, year = 1990, @@ -7179,7 +7679,7 @@ @Article{Polyak90 @article{PolyakJuditsky1992, title={Acceleration of stochastic approximation by averaging}, - author={Polyak, Boris T and Juditsky, Anatoli B}, + author={Polyak, Boris T. and Juditsky, Anatoli B.}, journal={SIAM journal on control and optimization}, volume={30}, issue={4}, @@ -7226,8 +7726,9 @@ @article{PreciadoEA2012 pages={18--31}, year={2012} } + @book{Prell2012, - title={Social network analysis: {H}istory, theory and methodology}, + title={Social Network Analysis: {H}istory, Theory and Methodology}, author={Prell, Christina}, year={2012}, publisher={Sage}, @@ -7248,7 +7749,7 @@ @incollection{prell2023international @article{Price76, Author = {{de Solla Price}, Derek John}, - Title = { A General Theory of Bibliometric and Other Advantage Processes}, + Title = { A general theory of bibliometric and other advantage processes}, Journal = {Journal of the American Society for Information Science}, Volume = {27}, Pages = {292--306}, @@ -7257,7 +7758,7 @@ @article{Price76 @article{PriesterPetty2001, title={Extending the bases of subjective attitudinal ambivalence: {I}nterpersonal and intrapersonal antecedents of evaluative tension.}, - author={Priester, Joseph R and Petty, Richard E}, + author={Priester, Joseph R. and Petty, Richard E.}, journal={Journal of Personality and Social Psychology}, volume={80}, issue={1}, @@ -7295,13 +7796,23 @@ @Manual{R author = {{R Core Team}}, organization = {R Foundation for Statistical Computing}, address = {Vienna, Austria}, - year = {2025}, + year = {2026}, url = {https://www.R-project.org/}, } +@article{RaabeBlock2024, + title={The gendered maths confidence gap, social influence and social integration}, + author={Raabe, Isabel J and Block, Per}, + journal={European Societies}, + volume={26}, + issue={5}, + pages={1596--1631}, + year={2024} +} + @article{RaabeBodaStadtfeld2019, title={The social pipeline: {How} friend influence and peer exposure widen the {STEM} gender gap}, - author={Raabe, Isabel J and Boda, Zs{\'o}fia and Stadtfeld, Christoph}, + author={Raabe, Isabel J. and Boda, Zs{\'o}fia and Stadtfeld, Christoph}, journal={Sociology of Education}, volume={92}, issue={2}, @@ -7427,8 +7938,8 @@ @BOOK{RaudenbushBryk02 } @book{RawlingsEA2023, - title={Network analysis: {I}ntegrating social network theory, method, and application with {R}}, - author={Rawlings, Craig M and Smith, Jeffrey A and Moody, James and McFarland, Daniel A}, + title={Network analysis: {I}ntegrating Social Network Theory, Method, and Application with {R}}, + author={Rawlings, Craig M. and Smith, Jeffrey A. and Moody, James and McFarland, Daniel A.}, year={2023}, address={Cambridge}, publisher={Cambridge University Press} @@ -7477,7 +7988,7 @@ @article{Robins2009 @book{Robins2015, title={Doing Social Network Research: {N}etwork-based Research Design for Social Scientists}, - author={Garry Robins}, + author={Garry L. Robins}, year={2015}, address={London etc.}, publisher={Sage} @@ -7582,7 +8093,7 @@ @Techreport{SienaManual11 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2011}, - url = {http://www.stats.ox.ac.uk/siena/} + url = {https://www.stats.ox.ac.uk/siena/} } @Techreport{SienaManual12, @@ -7591,7 +8102,7 @@ @Techreport{SienaManual12 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2012}, - url = {http://www.stats.ox.ac.uk/siena/} + url = {https://www.stats.ox.ac.uk/siena/} } @Techreport{SienaManual13, @@ -7601,7 +8112,7 @@ @Techreport{SienaManual13 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2013}, - url = {http://www.stats.ox.ac.uk/siena/} + url = {https://www.stats.ox.ac.uk/siena/} } @Techreport{SienaManual15, @@ -7611,7 +8122,7 @@ @Techreport{SienaManual15 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2015}, - url = {http://www.stats.ox.ac.uk/siena/} + url = {https://www.stats.ox.ac.uk/siena/} } @@ -7622,7 +8133,7 @@ @Techreport{SienaManual16 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2016}, - url = {http://www.stats.ox.ac.uk/~snijders/siena/} + url = {https://www.stats.ox.ac.uk/~snijders/siena/} } @Techreport{SienaManual17, @@ -7632,7 +8143,7 @@ @Techreport{SienaManual17 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2017}, - url = {http://www.stats.ox.ac.uk/~snijders/siena/} + url = {https://www.stats.ox.ac.uk/~snijders/siena/} } @Techreport{SienaManual18, @@ -7642,7 +8153,7 @@ @Techreport{SienaManual18 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2018}, - url = {http://www.stats.ox.ac.uk/~snijders/siena/} + url = {https://www.stats.ox.ac.uk/~snijders/siena/} } @Techreport{SienaManual21, @@ -7652,7 +8163,7 @@ @Techreport{SienaManual21 Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, Year={2021}, - url = {http://www.stats.ox.ac.uk/~snijders/siena/} + url = {https://www.stats.ox.ac.uk/~snijders/siena/} } @Techreport{SienaManual, @@ -7661,7 +8172,7 @@ @Techreport{SienaManual and Andr\'{a}s V\"{o}r\"{o}s and Paulina Preciado}, Institution={Oxford: University of Oxford, Department of Statistics; Nuffield College}, - Year={2024}, + Year={2026}, address = {\newline{\small\url{https://www.stats.ox.ac.uk/~snijders/siena/RSiena_manual.pdf}}}, } @@ -7708,7 +8219,7 @@ @Article{Roberts2000 @article{RobertsDunbar2011, title={The costs of family and friends: an 18-month longitudinal study of relationship maintenance and decay}, - author={Roberts, Sam GB and Dunbar, Robin IM}, + author={Roberts, Sam G.B. and Dunbar, Robin I.M.}, journal={Evolution and Human Behavior}, volume={32}, pages={186--197}, @@ -7733,7 +8244,7 @@ @Article{RobinsAlexander04 pages = {69--94}} @ARTICLE{RobinsEA99, - AUTHOR = "Gary {Robins} and Phillipa {Pattison} and Stanley {Wasserman}", + AUTHOR = "Garry L. {Robins} and Phillipa {Pattison} and Stanley {Wasserman}", TITLE = {Logit models and logistic regressions for social networks, III. Valued relations}, YEAR = "1999", @@ -7743,7 +8254,7 @@ @ARTICLE{RobinsEA99 @article{RWP05, author = {Robins, Garry L. and Woolcock, Jodie and Pattison, Philippa}, -title = {Small and Other Worlds: {G}lobal Network Structures from Local Processes}, +title = {Small and other worlds: {G}lobal network structures from local processes}, year = 2005, journal = {American Journal of Sociology}, volume = 110, @@ -7921,6 +8432,16 @@ @article{SchaeferEA2013 year={2013}, publisher={Sage Publications Sage CA: Los Angeles, CA} } +@article{SchaeferKreager2020, + title={New on the block: {Analyzing} network selection trajectories + in a prison treatment program}, + author={Schaefer, David R. and Kreager, Derek A.}, + journal={American Sociological Review}, + volume={85}, + issue={4}, + pages={709--737}, + year={2020} +} @article{SchaeferEA2022, author = {David R. Schaefer and @@ -7932,6 +8453,18 @@ @article{SchaeferEA2022 volume = {71?} } +@article {SchaeferEtAl_2024, +author = {David R. Schaefer and Sara I. Villalta and + Victoria Vezaldenos and Adriana J. Uma{\~n}a-Taylor}, +title = {{Some Birds Have Mixed Feather}s: + {B}ringing the Multiracial Population into the Study of Race Homophily}, +journal = {Sociological Science}, +volume = {11}, +issue= {38}, +pages = {1046--1083}, +year = {2024} +} + @TechReport{Schaeffer2013, author={Schaeffer, Merlin}, title={Ethnic diversity, public goods provision and social cohesion: @@ -8120,7 +8653,8 @@ @article{SelfhoutEA10 @article{SentseEA2013, title={The dynamics of friendships and victimization in adolescence: {A} longitudinal social network perspective}, - author={Sentse, Miranda and Dijkstra, Jan Kornelis and Salmivalli, Christina and Cillessen, Antonius HN}, + author={Sentse, Miranda and Dijkstra, Jan Kornelis + and Salmivalli, Christina and Cillessen, Antonius H.N.}, journal={Aggressive Behavior}, volume={39}, pages={229--238}, @@ -8168,7 +8702,7 @@ @article{ShaliziThomas2011 @article{Shannon1948, title={A mathematical theory of communication}, - author={C E Shannon}, + author={Claude E. Shannon}, journal={The {B}ell System Technical Journal}, volume={27}, pages={379--423, 623--656}, @@ -8208,8 +8742,8 @@ @TechReport{SieAlg author = {Tom A. B. Snijders}, title ={Siena algorithms}, institution = {University of Groningen, University of Oxford}, - address = {\newline{\small\url{http://www.stats.ox.ac.uk/~snijders/siena/Siena_algorithms.pdf}}}, - year = {2022}} + address = {\newline{\small\url{https://github.com/stocnet/rsiena/blob/main/docs/manual/Siena_algorithms.pdf}}}, + year = {2026}} @book{SijtsmaMolenaar2002, author = {Klaas Sijtsma and Ivo W. Molenaar}, @@ -8333,7 +8867,7 @@ @article{SkyrmsPemantle00 @article{SlaughterKoehly2016, title={Multilevel models for social networks: {H}ierarchical {B}ayesian approaches to exponential random graph modeling}, - author={Slaughter, Andrew J and Koehly, Laura M}, + author={Slaughter, Andrew J. and Koehly, Laura M.}, journal={Social Networks}, volume={44}, pages={334--345}, @@ -8348,6 +8882,46 @@ @book{Small2009 publisher={Oxford University Press} } +@article{SmallAdler2019, + title={The role of space in the formation of social ties}, + author={Small, Mario L and Adler, Laura}, + journal={Annual Review of Sociology}, + volume={45}, + pages={111--132}, + year={2019} +} + +@article{SmithMoody2013, + title={Structural effects of network sampling coverage I: + {N}odes missing at random}, + author={Smith, Jeffrey A. and Moody, James}, + journal={Social Networks}, + volume={35}, + issue={4}, + pages={652--668}, + year={2013} +} + +@article{SmithMoodyMorgan2017, + title={Network sampling coverage II: + {The} effect of non-random missing data on network measurement}, + author={Smith, Jeffrey A. and Moody, James and Morgan, Jonathan H.}, + journal={Social Networks}, + volume={48}, + pages={78--99}, + year={2017} +} + +@article{SmithMorganMoody2022, + title={Network sampling coverage III: + {Imputation} of missing network data under different network and missing data conditions}, + author={Smith, Jeffrey A. and Morgan, Jonathan H. and Moody, James}, + journal={Social Networks}, + volume={68}, + pages={148--178}, + year={2022} +} + @article{SmouseLong92, Author = {Smouse, Peter E. and Long, Jeffery C.}, Title = {Matrix Correlation-Analysis in Anthropology and Genetics}, @@ -8410,7 +8984,8 @@ @book{Sherifs1953 @InProceedings{Snijders95, author = {Tom A. B. Snijders}, - title = {Methods for Longitudinal Social Network Data: Review and {M}arkov Process Models}, + title = {Methods for longitudinal social network data: + {R}eview and {M}arkov process models}, booktitle = {New Trends in Probability and Statistics. Vol. 3: Multivariate Statistics and Matrices in Statistics. Proceedings of the 5th Tartu Conference}, @@ -8457,7 +9032,7 @@ @Article{Snijders02 number = 2, pages = {1--40}, note = {Available from -\textsf{http://www2.heinz.cmu.edu/project/INSNA/joss/index1.html}.}} +\textsf{https://www2.heinz.cmu.edu/project/INSNA/joss/index1.html}.}} @InCollection{Snijders03, @@ -8483,7 +9058,7 @@ @misc{Snijders_Sunbelt2003 @Article{Snijders04, author = {Tom A. B. Snijders}, - title = {Explained Variation in Dynamic Network Models}, + title = {Explained variation in dynamic network models}, journal = {Math\'{e}matiques, Informatique et Sciences Humaines / Mathematics and Social Sciences}, year = 2004, @@ -8492,7 +9067,7 @@ @Article{Snijders04 @InCollection{Snijders05, author = {Tom A. B. Snijders}, - title = {Models for Longitudinal Network Data}, + title = {Models for longitudinal network data}, booktitle = {Models and Methods in Social Network Analysis}, publisher = {New York: Cambridge University Press}, year = 2005, @@ -8503,7 +9078,7 @@ @InCollection{Snijders05 @InProceedings{Snijders06, author = {Tom A. B. Snijders}, - title = {Statistical Methods for Network Dynamics}, + title = {Statistical methods for network dynamics}, booktitle = {Proceedings of the XLIII Scientific Meeting, Italian Statistical Society}, pages = {281--296}, @@ -8522,7 +9097,7 @@ @Unpublished{Snijders07 @InCollection{Snijders09, author = {Tom A. B. Snijders}, - title = {Longitudinal Methods of Network Analysis}, + title = {Longitudinal methods of network analysis}, booktitle = {Encyclopedia of Complexity and System Science}, pages={5998--6013}, editor={Bob Meyers}, @@ -8533,7 +9108,7 @@ @InCollection{Snijders09 @article{Snijders2010, author = {Tom A. B. Snijders}, - title = {Conditional Marginalization for Exponential Random Graph Models}, + title = {Conditional marginalization for exponential random graph models}, journal = {Journal of Mathematical Sociology}, year = {2010}, volume={34}, @@ -8566,6 +9141,21 @@ @InCollection{Snijders2011a } +@InCollection{SnijdersSteglich2024, + title={Network Dynamics}, + author={Tom A.B. Snijders and Christian E.G. Steglich}, + booktitle={The SAGE Handbook of Social Network Analysis}, + edition={2nd}, + address={London,Thousand Oaks (CA), New Delhi, Singapore}, + editor = {John McLevey and John Scott and Peter J. Carrington }, + chapter={34}, + pages={501--512}, + year={2024}, + publisher={Sage}, + address={London,Thousand Oaks (CA), New Delhi, Singapore} +} + + @incollection{Snijders2013, title={Network dynamics}, author={{Tom A. B.} Snijders}, @@ -8578,15 +9168,15 @@ @incollection{Snijders2013 @misc{Snijders2013Greenwich, author = {Tom A. B. Snijders}, - title = {Variance Reduction in the {Robbins-Monro} procedure in {RSiena}}, + title = {Variance reduction in the {Robbins-Monro} procedure in {RSiena}}, note = {Paper presented at the 9th UKSNA Conference, June 27--28, 2013, Greenwich}, - howpublished = "\url{http://www.stats.ox.ac.uk/~snijders/siena/Dolby_s.pdf}", + howpublished = "\url{https://www.stats.ox.ac.uk/~snijders/siena/Dolby_s.pdf}", year = {2013} } @InCollection{Snijders09, author = {Tom A. B. Snijders}, - title = {Longitudinal Methods of Network Analysis}, + title = {Longitudinal methods of network analysis}, booktitle = {Encyclopedia of Complexity and System Science}, pages={5998--6013}, editor={Bob Meyers}, @@ -8610,8 +9200,8 @@ @Book{SnijdersBosker12 @Article{SnijdersBaerveldt03, author = {Tom A. B. Snijders and Chris Baerveldt}, - title = {A Multilevel Network Study of the Effects -of Delinquent Behavior on Friendship Evolution}, + title = {A multilevel network study of the effects +of delinquent behavior on friendship evolution}, journal = {Journal of Mathematical Sociology}, year = 2003, volume = 27, @@ -8657,8 +9247,8 @@ @article{SnijdersDoreian2012 @Article{SnijdersSteglich15, author = {Tom A. B. Snijders and {Christian E. G.} Steglich}, - title = {Representing Micro-Macro Linkages by - Actor-Based Dynamic Network Models}, + title = {Representing micro-macro linkages by + actor-based dynamic network models}, journal = {Sociological Methods \& Research}, year = 2015, volume = 44, @@ -8668,7 +9258,7 @@ @Article{SnijdersSteglich15 @InCollection{SnijdersEA07, author = {Tom A. B. Snijders and Christian E. G. Steglich and Michael Schweinberger}, title = {Modeling the co-evolution of networks and behavior}, - booktitle = {Longitudinal models in the behavioral and related sciences}, + booktitle = {Longitudinal Models in the Behavioral and Related Sciences}, pages = {41--71}, year=2007, publisher = {Mahwah, NJ: Lawrence Erlbaum}, @@ -8676,7 +9266,7 @@ @InCollection{SnijdersEA07 @Article{SnijdersEA10a, author = {Tom A. B. Snijders and Johan H. Koskinen and Michael Schweinberger}, - title = {Maximum Likelihood Estimation for Social Network Dynamics}, + title = {Maximum likelihood estimation for social network dynamics}, journal = {Annals of Applied Statistics}, year = 2010, volume = 4, @@ -8700,7 +9290,7 @@ @Article{SLT2013 title = {A model for the multiplex dynamics of two-mode and one-mode networks, with an application to employment preference, friendship, and advice}, year = {2013}, - author = {Tom A. B. Snijders and Alessandro Lomi and Vanina Torl\'{o}}, + author = {Tom A.B. Snijders and Alessandro Lomi and Vanina Torl\`{o}}, journal = {Social Networks}, volume = 35, pages = {265--276} @@ -8719,7 +9309,7 @@ @Article{SL2019 @Article{SnijdersEA10b, author = {Tom A. B. Snijders and Gerhard G. {van de Bunt} and {Christian E. G.} Steglich}, - title = {Introduction to Actor-Based Models for Network Dynamics}, + title = {Introduction to actor-based models for network dynamics}, journal = {Social Networks}, year = 2010, volume = 32, @@ -8730,7 +9320,7 @@ @article{SPRH06 author = {Tom A. B. Snijders and Philippa E. Pattison and Garry L. Robins and Mark S. Handcock}, year={ 2006}, - title = {New Specifications for Exponential Random Graph Models}, + title = {New specifications for Exponential Random Graph Models}, journal={Sociological Methodology}, pages={99--153}, volume={36} @@ -8772,7 +9362,7 @@ @article{SnijdersNowicki1997 @article{Snijders2011, author = {Tom A. B. Snijders}, -title = {Statistical Models for Social Networks}, +title = {Statistical models for social networks}, journal = {Annual Review of Sociology}, volume = {37}, pages = {131--153}, @@ -8781,7 +9371,7 @@ @article{Snijders2011 @incollection{Snijders16, Author = {Tom A. B. Snijders}, - title = {The Multiple Flavours of Multilevel Issues for Networks}, + title = {The multiple flavours of multilevel issues for networks}, booktitle = {Multilevel Network Analysis for the Social Sciences; {T}heory, Methods and Applications}, editor = {Emmanuel Lazega and Tom A. B. Snijders}, @@ -8792,7 +9382,7 @@ @incollection{Snijders16 @article{Snijders2017, author = {Tom A. B. Snijders}, -title = {Stochastic Actor-Oriented Models for Network Dynamics}, +title = {Stochastic actor-oriented models for network dynamics}, journal = {Annual Review of Statistics and Its Application}, volume = {4}, pages = {343--363}, @@ -8801,7 +9391,7 @@ @article{Snijders2017 @incollection{SnijdersPickup16, Author = {Tom A. B. Snijders and Mark Pickup}, - title = {Stochastic Actor-Oriented Models for Network Dynamics}, + title = {Stochastic actor-oriented models for network dynamics}, booktitle = {Oxford Handbook of Political Networks}, editor = {Jennifer Nicoll Victor and Mark Lubell and Alexander H. Montgomery}, pages = {221--247}, @@ -8811,7 +9401,7 @@ @incollection{SnijdersPickup16 @incollection{SnijdersPickup17, Author = {Tom A. B. Snijders and Mark Pickup}, - title = {Stochastic Actor-Oriented Models for Network Dynamics}, + title = {Stochastic actor-oriented models for network dynamics}, booktitle = {Oxford Handbook of Political Networks}, editor = {Jennifer Nicoll Victor and Mark Lubell and Alexander H. Montgomery}, pages = {221--247}, @@ -8837,12 +9427,22 @@ @article{SnijdersFayeBrailly2020 pages = {300--323} } +@article{SnijdersLopaciuk2025, + title={Double agency and co-evolution for two-mode networks, + with an application to corporate interlocks and firms' environmental performance}, + author={Snijders, Tom A.B. and {\L}opaciuk-Gonczaryk, Beata}, + journal={Social Networks}, + volume={83}, + pages={92--104}, + year={2025} +} + @Book{SNDE, editor = {Tom A. B. Snijders and Christian E. G. Steglich}, title = {Social Network Dynamics by Examples}, publisher = {\emph{In preparation}, Cambridge University Press}, address = {Cambridge}, - year = 2023} + year = 2026} @@ -8853,13 +9453,13 @@ @Manual{SnijdersZO address = {Groningen}, year = {2017}, version = {2.3}, - url = {http://www.stats.ox.ac.uk/~snijders/socnet.htm} + url = {https://www.stats.ox.ac.uk/~snijders/socnet.htm} } @techreport{SnijdersSettings2019, title={Networks in Social Contexts: - {S}pecification Issues for the Settings Model}, + {S}pecification issues for the settings model}, author={Tom A.B. Snijders and Felix Sch\"{o}nenberger}, intitution={European Social Networks Conference}, address={Z\"{u}rich}, @@ -8988,7 +9588,7 @@ @incollection{StadtfeldAmati2021 @article {StadtfeldBlock2017, author = {Christoph Stadtfeld and Per Block }, -title = {Interactions, Actors, and Time: {D}ynamic Network Actor Models for Relational Events}, +title = {Interactions, actors, and time: {D}ynamic network actor models for relational events}, journal = {Sociological Science}, volume = {4}, issue = {14}, @@ -9013,8 +9613,17 @@ @article{StadtfeldEA2020 journal={Social Networks}, volume={60}, pages={129--145}, - year={2020}, - publisher={Elsevier} + year={2020} +} + +@article{StadtfeldEAPower2020, +author = {Christoph Stadtfeld and Tom A.B. Snijders and Christian Steglich and Marijtje van Duijn}, +title ={Statistical Power in Longitudinal Network Studies}, +journal = {Sociological Methods \& Research}, +volume = {49}, +issue = {4}, +pages = {1103--1132}, +year = {2020} } @article{stadtfeld2016assimilation, title={Assimilation and differentiation: @@ -9026,7 +9635,8 @@ @article{stadtfeld2016assimilation year={2016} } -@article{StadfeldGeyer2011, + +@article{StadtfeldGeyer2011, Author = {Stadtfeld, Christoph and Geyer-Schulz, Andreas}, Title = {Analyzing event stream dynamics in two-mode networks: {An} exploratory analysis of private communication in a question and answer community}, @@ -9048,8 +9658,8 @@ @software{Statnet @article{DyNAM, Author = {Christoph Stadtfeld and James Hollway and Per Block}, - Title = {Dynamic Network Actor {Markov} Models: - {I}nvestigating Coordination Ties through Time}, + Title = {Dynamic network actor {Markov} models: + {i}nvestigating coordination ties through time}, Journal = {Sociological Methodology}, Volume = {47}, Pages = {1--40}, @@ -9058,7 +9668,7 @@ @article{DyNAM @article{DyNAM_b, author = {Christoph Stadtfeld and James Hollway and Per Block}, - title ={Rejoinder: {DyNAMs} and the Grounds for Actor-oriented Network Event Models}, + title ={Rejoinder: {DyNAMs} and the grounds for actor-oriented network event models}, journal = {Sociological Methodology}, volume = {47}, pages = {56--67}, @@ -9082,7 +9692,7 @@ @incollection{StadtfeldEtAl2010 @article{StadfeldSnijdersSteglichVanDuijn2018, Author = {Stadtfeld, Christoph and Snijders, Tom A.B. and Steglich, Christian E.G. and {van Duijn}, Marijtje A.J. }, - Title = {Statistical Power in Longitudinal Network Studies}, + Title = {Statistical power in longitudinal network studies}, Journal = {Sociological Methods \& Research}, Volume = {49}, Pages = {1103--1132}, @@ -9184,7 +9794,7 @@ @unpublished{Stokman2004 note = {Keynote Address at the {SUNBELT XXIV} International Network for Social Network Analysis Conference, May 13, 2004, in Portoroz (Slovenia)}, year=2004, - url={http://www.rug.nl/research/portal/files/14560752/What%20binds%20us%20when%20with%20whom.pdf} + url={https://www.rug.nl/research/portal/files/14560752/What%20binds%20us%20when%20with%20whom.pdf} } @ARTICLE{StokmanVieth04, @@ -9244,6 +9854,16 @@ @incollection{TajfelTurner1986 publisher={Nelson-Hall, Chicago} } +@article{TangSnijdersFlache2025, + title={An empirical and simulation investigation + of bounded confidence and negative influence in opinion dynamics + using stochastic actor-oriented modelling}, + author={Tang, Tanzhe and Snijders, Tom A.B. and Flache, Andreas}, + journal={Journal of Artificial Societies and Social Simulation}, + volume={28}, + pages={(1){ }2}, + year={2025} +} @article{TannerWong87, author={M.A. Tanner and W.H. Wong}, @@ -9349,6 +9969,16 @@ @article{TKKOSK2009 pages = {240--254} } +@article{TorloLomi2017, + author = {Torl\`{o}, Vanina Jasmine and Lomi, Alessandro}, + title = {The Network Dynamics of Status: {A}ssimilation and Selection}, + journal = {Social Forces}, + volume = {96}, + issue = {1}, + pages = {389--422}, + year = {2017} +} + @InCollection{TorloEA2017, author = {Vanina J. Torl\'{o} and Alessandro Lomi and Tom A. B. Snijders}, title = {No network comes alone: {T}he dynamics of multiplexity}, @@ -9388,8 +10018,8 @@ @article{TraversMilgram1969 } @article{TrinhEA2019, - title={Our buddies, ourselves: the role of sexual homophily in adolescent friendship networks}, - author={Trinh, Sarah L and Lee, Jaemin and Halpern, Carolyn T and Moody, James}, + title={Our buddies, ourselves: {The} role of sexual homophily in adolescent friendship networks}, + author={Trinh, Sarah L. and Lee, Jaemin and Halpern, Carolyn T. and Moody, James}, journal={Child Development}, volume={90}, issue={1}, @@ -9437,14 +10067,14 @@ @InCollection{TubaroSNDE pages = {xxx-xxx}, publisher = {Cambridge University Press}, address = {Cambridge}, - year = 2020, + year = 2026, editor = {{Tom A. B.} Snijders and {Christian E. G.} Steglich}} @article{TuckerEA2013, title={Neighborhood characteristics and the initiation of marijuana use and binge drinking}, - author={Tucker, Joan S and Pollard, Michael S and {de la Haye}, Kayla and - Kennedy, David P and Green, Harold D}, + author={Tucker, Joan S. and Pollard, Michael S. and {de la Haye}, Kayla and + Kennedy, David P. and Green, Harold D.}, journal={Drug and Alcohol Dependence}, volume={128}, issue={1}, @@ -9472,7 +10102,7 @@ @TechReport{Udry2003 @BOOK{Valente95, -AUTHOR = "Thomas {Valente}", +AUTHOR = "Thomas W. {Valente}", TITLE = {Network Models of the Diffusion of Innovations}, PUBLISHER = "Hampton Press", YEAR = "1995", @@ -9482,8 +10112,8 @@ @BOOK{Valente95 @article{ValenteEA2003, title={Effects of a social-network method for group assignment strategies on peer-led tobacco prevention programs in schools}, - author={Valente, Thomas W and Hoffman, Beth R and Ritt-Olson, Annamara and - Lichtman, Kara and Johnson, C Anderson}, + author={Valente, Thomas W. and Hoffman, Beth R. and Ritt-Olson, Annamara and + Lichtman, Kara and {Anderson Johnson}, C. }, journal={American Journal of Public Health}, volume={93}, issue={11}, @@ -9506,13 +10136,12 @@ @INCOLLECTION{Valente05 @article{ValenteEA2005, title={Do popular students smoke? The association between popularity and smoking among middle school students}, - author={Valente, Thomas W and Unger, Jennifer B and Johnson, C Anderson}, + author={Valente, Thomas W. and Unger, Jennifer B. and Johnson, C. Anderson}, journal={Journal of Adolescent Health}, volume={37}, - number={4}, + issue={4}, pages={323--329}, - year={2005}, - publisher={Elsevier} + year={2005} } @book{Valente2010, @@ -9849,6 +10478,18 @@ @article{WBHL2020 pages = {0049124120914933}, year = {2020}} + +@article{WHBL2022, +author = {Cheng Wang and John R. Hipp and Carter T. Butts and Cynthia M. Lakon}, +title = {The Moderating Role of Context: {Relationships} + between Individual Behaviors and Social Networks}, +journal = {Sociological Focus}, +volume = {55}, +issue = {2}, +pages = {191--212}, +year = {2022} +} + @article{WSRP2009, Author = {Peng Wang and Ken Sharpe and Garry L. Robins and Philippa E. Pattison}, @@ -9860,7 +10501,7 @@ @article{WSRP2009 @article{WangRPL2013, title={Exponential random graph models for multilevel networks}, - author={Wang, Peng and Robins, Garry and Pattison, Philippa and Lazega, Emmanuel}, + author={Wang, Peng and Robins, Garry L. and Pattison, Philippa E. and Lazega, Emmanuel}, journal={Social Networks}, volume={35}, number={1}, @@ -9870,12 +10511,12 @@ @article{WangRPL2013 @techreport{pnet2009, title={PNet}, - author={Wang, Peng and Robins, Garry and Pattison, Philippa}, + author={Wang, Peng and Robins, Garry L. and Pattison, Philippa E.}, journal={Program for the Simulation and Estimation of Exponential Random Graph ($p^\ast$) Models}, institution = {University of Melbourne}, address={Melbourne}, - url = {http://www.melnet.org.au/pnet}, + url = {https://www.melnet.org.au/pnet}, year={2009} } @@ -10083,7 +10724,7 @@ @article{White1980 @article{WhiteEA1976, title={Social structure from multiple networks. {I. B}lockmodels of roles and positions}, - author={White, Harrison C and Boorman, Scott A and Breiger, Ronald L}, + author={White, Harrison C. and Boorman, Scott A. and Breiger, Ronald L.}, journal={American Journal of Sociology}, pages={730--780}, year={1976}, @@ -10108,7 +10749,7 @@ @Book{ggplot2 address = {New York}, year = {2009}, isbn = {978-0-387-98140-6}, - url = {http://ggplot2.org} + url = {https://ggplot2.org} } @article{WimmerLewis2010, @@ -10250,9 +10891,10 @@ @article{ZachrisonEA2016 } @article{ZandbergHuisman2019, -author="Zandberg, Tjeerd and Huisman, Mark E", +author="Zandberg, Tjeerd and Huisman, Mark E.H.", title="Missing behavior data in longitudinal network studies: - {T}he impact of treatment methods on estimated effect parameters in stochastic actor oriented models", + {T}he impact of treatment methods on estimated effect parameters +in stochastic actor oriented models", journal="Social Network Analysis and Mining", year="2019", volume={9.8} @@ -10279,7 +10921,7 @@ @book{Zeggelink93diss @Article{Zeg94, author = {Zeggelink, Evelien P.H.}, - title = {Dynamics of structure: an individual oriented approach}, + title = {Dynamics of structure: {An} individual oriented approach}, journal = {Social Networks}, year = 1994, volume = 16, @@ -10322,7 +10964,7 @@ @article{Znidarsic2012 volume = {9}, number = {2}, pages = {139--153}, - url = {http://www.stat-d.si/mz/mz9.1/znidarsic2.pdf}, + url = {https://www.stat-d.si/mz/mz9.1/znidarsic2.pdf}, year = {2012} } diff --git a/docs/manual/RSiena_Manual.pdf b/docs/manual/RSiena_Manual.pdf index bdb6291..c2b9177 100644 Binary files a/docs/manual/RSiena_Manual.pdf and b/docs/manual/RSiena_Manual.pdf differ diff --git a/docs/manual/RSiena_Manual.tex b/docs/manual/RSiena_Manual.tex index e7d4146..cfd29ef 100644 --- a/docs/manual/RSiena_Manual.tex +++ b/docs/manual/RSiena_Manual.tex @@ -216,7 +216,7 @@ and Viviana Amati. This manual is frequently updated, mostly only in a minor way. -This version was renewed for \RS version 1.6.6. +This version was renewed for \RS version1.6.7. In version 1.6, the names of \RS functions have undergone important changes. This manual is for the new names. @@ -1187,7 +1187,7 @@ \subsection{Getting help with problems} of \rs. Details of the latest version available can be found at the `Downloads' page. The version is - identified by a version number (e.g.\ 1.6.6). + identified by a version number (e.g., 1.6.7). You can find the number of your current installed version by opening \R, and typing\\ \verb|packageVersion("RSiena")| \\ @@ -7674,6 +7674,10 @@ \subsection{Testing time heterogeneity in parameters} tt3 <- test_time(ans3) \end{verbatim} and so on. +\medskip + +At the \SI website there is a script \texttt{RscriptSienaTimeTest.r} +with an extensive example. \newpage \section{Simulation} @@ -17702,12 +17706,12 @@ \section{For programmers: Building, installing and checking the package} them to the repository. \item [Check] Checking is a process designed to ensure that packages are likely to work correctly when installed. Type -\verb|R CMD check RSiena_1.6.6.tar.gz|\\ +\verb|R CMD check RSiena_1.6.7.tar.gz|\\ (where the version number is adjusted to match the tar ball name.) \item[zip file] To make a zip file that can be used in Windows for `installing from a local zip file', and therefore is easy for distribution to others, type\\ -\verb|R CMD INSTALL --build RSiena_1.6.6.tar.gz| \\ +\verb|R CMD INSTALL --build RSiena_1.6.7.tar.gz| \\ (where again the version number is adjusted to match the tar ball name.) \end{description} @@ -18355,6 +18359,21 @@ \section{Appendix: Changes compared to earlier versions} \fi +\item 2026-05-15 GitHub, package version 1.6.7. + +Changes in RSiena: +\begin{itemize} +\item Improvements of functionality: + \begin{itemize} + \item Option \texttt{onestep} for \sfn{test\_parameter(..., method="score", ...)} . + \item Option \texttt{onestep} for \sfn{update\_theta} . + \item Name \texttt{sienaNet} added to \sfn{transformScript} as one of the names + to be replaced. + \item \sfn{make\_effects} now also works for \texttt{sienadata} + objects older than 1.4.10. + \end{itemize} +\end{itemize} + \item 2026-04-20 GitHub and CRAN, package version 1.6.6. Changes in RSiena: diff --git a/man/RSiena-package.Rd b/man/RSiena-package.Rd index 790bbee..f8d72bc 100644 --- a/man/RSiena-package.Rd +++ b/man/RSiena-package.Rd @@ -52,8 +52,8 @@ Bug reports can be submitted at \tabular{ll}{ Package: \tab RSiena\cr Type: \tab Package\cr - Version: \tab 1.6.4\cr - Date: \tab 2026-04-02\cr + Version: \tab 1.6.7\cr + Date: \tab 2026-05-15\cr Depends: \tab R (>= 4.5.0)\cr Imports: \tab Matrix, lattice, parallel, MASS, methods, xtable\cr Suggests: \tab network, tools, codetools, tcltk\cr diff --git a/man/print.sienaTest.Rd b/man/print.sienaTest.Rd index edb1dd6..44a990a 100644 --- a/man/print.sienaTest.Rd +++ b/man/print.sienaTest.Rd @@ -5,7 +5,7 @@ Print method for Wald and score tests for RSiena results } \description{ - This method prints Wald-type and score-type tests for results + This method prints Wald-type and score-type tests for results estimated by \code{\link{siena}}. } \usage{ @@ -17,7 +17,7 @@ \item{\dots}{Extra arguments (not used at present).} } -\details{The function \code{\link{test_parameter}} produces +\details{The function \code{\link{test_parameter}} produces an object of type \code{\link{sienaTest}}. These can be printed by this method.} \value{An object of type \code{\link{sienaTest}}. @@ -29,13 +29,21 @@ mynet <- as_dependent_rsiena(array(c(s501, s502), dim=c(50, 50, 2))) mydata <- make_data_rsiena(mynet) myeff <- make_specification(mydata) -myalgo <- set_algorithm_saom(nsub=1, n3=40, seed=1291) +myalgo <- set_algorithm_saom(nsub=2, n3=100, seed=1291) # nsub=1, n3=40 is used here for having a brief computation, not for practice. -myeff <- set_effect(myeff, list(transTrip, transTies)) -myeff <- set_effect(myeff, list(outAct, outPop), fix=TRUE, test=TRUE) +myeff <- set_effect(myeff, list(transTrip, gwespFF)) +myeff <- set_effect(myeff, list(outAct, inPop, inAct)) +myeff <- set_effect(myeff, list(inInAss, outOutAss), fix=TRUE, test=TRUE) (ans <- siena(mydata, effects=myeff, control_algo=myalgo, silent=TRUE, batch=TRUE)) -mprs <- test_parameter(ans, tested=c(3, 4)) -print(mprs) +test_parameter(ans, method="score", tested=ans$test) +for (i in which(ans$test)){ + sct <- test_parameter(ans, method="score", tested=i) + print(sct)} +test_parameter(ans, method="score", tested=TRUE, onestep=TRUE) +myeff1 <- set_effect(myeff, list(inInAss, outOutAss)) +(ans1 <- siena(mydata, effects=myeff1, control_algo=myalgo, + prevAns=ans, silent=TRUE, batch=TRUE)) } \keyword{print} + diff --git a/man/test_parameter.Rd b/man/test_parameter.Rd index d5fac38..1288467 100644 --- a/man/test_parameter.Rd +++ b/man/test_parameter.Rd @@ -19,7 +19,7 @@ or score-type tests (if the parameters were fixed and tested).\cr The function \code{test_parameter} chooses among the functions \code{Wald.RSiena}, \code{Multipar.RSiena}, - \code{testSame.RSiena}, and \code{score.Test}, + \code{testSame.RSiena}, and \code{score.Test}, based on the input given. The export of the latter three functions is superfluous, but they are kept for backward compatibility. } @@ -33,7 +33,7 @@ Multipar.RSiena(x, tested) testSame.RSiena(x, e1, e2) -score.Test(x, tested=x$test) +score.Test(x, tested=x$test, onestep=FALSE) } \arguments{ @@ -44,8 +44,10 @@ score.Test(x, tested=x$test) where \code{p = x$pp}, the number of parameters in \code{x} excluding the basic rate parameters used for conditional estimation; these indicate the tested parameters. - Can also be a logical vector of length \code{p}; \cr - or, for \code{test_parameter}, a \code{k} * \code{p} matrix. } + Can also be a logical vector, of length \code{p}; \cr + or, for \code{test_parameter}, a \code{k} * \code{p} matrix; \cr + or, still for \code{method="score"}, a logical vector + for which \code{all(tested)} evaluates to \code{TRUE}. } \item{tested2}{A single number or vector as mentioned for \code{tested}; these two parameters are tested for equality for \code{method = "same"}.} \item{A}{A \code{k} * \code{p} matrix, where \code{p = ans$pp}, @@ -54,6 +56,7 @@ score.Test(x, tested=x$test) \item{e1,e2}{Each an integer number between 1 and \code{p}, or a vector of such numbers; the hypothesis tested is that the parameters for effects with number/s \code{e1} are equal to those in \code{e2}.} + \item{onestep}{Boolean. Whether also to compute the one-step estimates.} \item{...}{Additional arguments (currently not used.)} } @@ -68,19 +71,25 @@ score.Test(x, tested=x$test) For \code{test_parameter} and \code{Multipar.RSiena} if \code{tested} is a number or vector, a multivariate (i.e., simultaneous) test is given of the hypothesis that - the parameters mentioned in \code{tested} are 0. \cr + the parameters mentioned in \code{tested} are 0. + For \code{test_parameter} if \code{method="all"}, - a test is given of all parameters in the model.\cr - For \code{test_parameter} - if \code{method="same"}, the items \code{"tested"} and \code{"tested2"} + a test is given of all estimated parameters in the model. + + For \code{test_parameter} if \code{method="same"}, + the items \code{"tested"} and \code{"tested2"} should be single numbers or vectors of equal length, and the test - of equality of the corresponding two parameters is given.\cr + of equality of the corresponding two parameters is given. + For \code{test_parameter} if \code{method="score"}, and for \code{score.Test}, the parameters with numbers in \code{"tested"} should all be used in \code{x} as fixed-and-tested parameters, and the multivariate score test of these parameters is given of the hypothesis that the tested parameters have - the value indicated in the effects object used for obtaining \code{x}. \cr + the value indicated in the effects object used for obtaining \code{x}; \cr + if \code{method="score"} and \code{all{tested}} evaluates to TRUE, + all fixed parameters are tested. + The numbering of parameters is as in \code{print(x)}; if conditional estimation was used, numbered as the 'Other parameters'). @@ -117,9 +126,10 @@ myalgo <- set_algorithm_saom(nsub=1, n3=40, seed=1777) mynet <- as_dependent_rsiena(array(c(s501, s502), dim=c(50, 50, 2))) mydata <- make_data_rsiena(mynet) myeff <- make_specification(mydata) -myeff <- set_effect(myeff, list(transTrip, transTies)) +myeff <- set_effect(myeff, list(gwespFF,gwespFB)) myeff <- set_effect(myeff, list(outAct, outPop), fix=TRUE, test=TRUE) (ans <- siena(mydata, effects=myeff, control_algo=myalgo, batch=TRUE)) +test_parameter(ans, tested=3) A <- matrix(0, 2, 6) A[1, 3] <- 1 A[2, 4] <- 1 @@ -132,6 +142,7 @@ sct <- test_parameter(ans, method="score", tested=c(FALSE, FALSE, FALSE, FALSE, FALSE, TRUE)) sct <- test_parameter(ans, method="score", tested=6) print(sct) +test_parameter(ans, method="score", tested=TRUE) # Getting all 1-df score tests separately: for (i in which(ans$test)){ sct <- test_parameter(ans, method="score", tested=i) diff --git a/man/updateTheta.Rd b/man/updateTheta.Rd index ab0f6b5..3fdbd3c 100644 --- a/man/updateTheta.Rd +++ b/man/updateTheta.Rd @@ -10,7 +10,7 @@ A function to update the initial values of the parameters, and a function to update an effects object. } \description{ - \code{update_theta} copies the final values of + \code{update_theta} copies the final values of the parameter estimates for any matching selected effects from a \code{\link{sienaFit}} object to a Siena effects object.\cr \code{update_specification} includes in a Siena effects object @@ -23,7 +23,8 @@ to update an effects object. the others are kept for backward compatibility. } \usage{ -\method{update_theta}{sienaEffects}(x, prevAns, varName=NULL, ...) +\method{update_theta}{sienaEffects}(x, prevAns, varName=NULL, + onestep=FALSE, freed=0, r=1, ...) \method{update_specification}{sienaEffects}(x, effects.from, effects.extra=NULL, name.to=NULL, name.from=NULL, ...) @@ -45,6 +46,14 @@ updateSpecification(effects.to, effects.from, \item{name.from}{Character string, name of dependent variable in \code{object.from}.} \item{effects}{Object of class \code{\link{sienaEffects}}.} + \item{onestep}{Boolean: whether to change the initial value to the + one-step estimate in \code{prevAns}. Only possible if there are + some fixed-and-tested effects in \code{prevAns}.} + \item{freed}{Integer or integer vector indicating the numbers of effects + (as numbered in \code{prevAns}) to be freed, i.e., for which + \code{test} and \code{fix} are to be set to \code{FALSE}. + If 0, none will be freed.} + \item{r}{Real number, preferably in \code{(0.1]}.} \item{...}{Additional arguments, not used now.} } \details{ @@ -56,7 +65,9 @@ updateSpecification(effects.to, effects.from, the dependent variable on which the run was conditioned are added to the final value of theta. If \code{varName} is not \code{NULL}, this update is restricted to effects for the dependent variable/s - specified by \code{varName}. + specified by \code{varName}.\cr + If \code{onestep=TRUE}, then \code{prevAns} should have been obtained + using effects object \code{x}. \cr By \code{update_specification}, the effects included in \code{effects.from} are also included in \code{x} (for \code{update_specification}) \code{effects.to} @@ -92,16 +103,19 @@ mynet1 <- as_dependent_rsiena(array(c(tmp3, tmp4), dim=c(32, 32, 2))) mydata <- make_data_rsiena(mynet1) myeff1 <- make_specification(mydata) myeff1 <- set_effect(myeff1, transTrip) -myeff1 <- set_interaction(myeff1, list(recip, inPop)) +myeff1 <- set_effect(myeff1, inPop) +myeff1 <- set_effect(myeff1, outAct, test=TRUE, fix=TRUE) myalgo <- set_algorithm_saom(nsub=1, n3=100, seed=1291) (ans <- siena(mydata, effects=myeff1, control_algo=myalgo, batch=TRUE)) ans$theta (myeff <- update_theta(myeff1, ans)) -## +(myeff2 <- update_theta(myeff1, ans, onestep=TRUE, freed=5, r=1)) +(ans2 <- siena(mydata, effects=myeff2, control_algo=myalgo, + batch=TRUE)) ## For updateSpecification: -myeff2 <- make_specification(mydata) -myeff2 <- set_effect(myeff2, outAct) -update_specification(myeff2, myeff1) +myeff3 <- make_specification(mydata) +myeff3 <- set_effect(myeff3, outAct) +update_specification(myeff3, myeff1) } \keyword{models} diff --git a/tests/newparallel.Rout.save b/tests/newparallel.Rout.save index 9b37635..bd76c84 100644 --- a/tests/newparallel.Rout.save +++ b/tests/newparallel.Rout.save @@ -1,6 +1,6 @@ -R version 4.5.1 (2025-06-13 ucrt) -- "Great Square Root" -Copyright (C) 2025 The R Foundation for Statistical Computing +R version 4.6.0 (2026-04-24 ucrt) -- "Because it was There" +Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. @@ -294,7 +294,7 @@ Total of 595 iteration steps. > test_parameter(ans, method='same', tested=3, tested2=4) Tested effects: reciprocity endow == reciprocity creation -chi-squared = 1.79, d.f. = 1; standard error of linear combination = 1.13; one-sided Z = 1.34; two-sided p = 0.181. +chi-squared = 1.79, d.f. = 1; standard error = 1.13; one-sided Z = 1.34; two-sided p = 0.181. > ##test7 > mynet1 <- as_dependent_rsiena(array(c(tmp3,tmp4),dim=c(32,32,2))) > mydata <- make_data_rsiena(mynet1) @@ -1730,4 +1730,4 @@ Total of 605 iteration steps. > > proc.time() user system elapsed - 52.96 1.12 54.31 + 42.39 0.81 43.34