Scalable Methods for Adaptively Seeding a Social Network

Total Page:16

File Type:pdf, Size:1020Kb

Scalable Methods for Adaptively Seeding a Social Network Scalable Methods for Adaptively Seeding a Social Network Thibaut Horel Yaron Singer Harvard University Harvard University [email protected] [email protected] ABSTRACT 1.0 In recent years, social networking platforms have developed into extraordinary channels for spreading and consuming in- 0.8 formation. Along with the rise of such infrastructure, there 0.6 is continuous progress on techniques for spreading informa- Probability tion effectively through influential users. In many applica- 0.4 tions, one is restricted to select influencers from a set of 0.2 users who engaged with the topic being promoted, and due Core set Friends to the structure of social networks, these users often rank 0.0 0 1000 2000 3000 4000 5000 6000 low in terms of their influence potential. An alternative ap- Degree proach one can consider is an adaptive method which selects users in a manner which targets their influential neighbors. Figure 1: CDF of the degree distribution of users who liked The advantage of such an approach is that it leverages the a post by Kiva on Facebook and that of their friends. friendship paradox in social networks: while users are often of individuals who can serve as early adopters of a new idea, not influential, they often know someone who is. product, or technology in a manner that will trigger a large Despite the various complexities in such optimization prob- cascade in the social network. lems, we show that scalable adaptive seeding is achievable. In many cases where influence maximization methods are In particular, we develop algorithms for linear influence mod- applied one cannot select any user in the network but is els with provable approximation guarantees that can be grace- limited to some subset of users. As an example, consider fully parallelized. To show the effectiveness of our methods an online retailer who wishes to promote a product through we collected data from various verticals social network users word-of-mouth by rewarding influential customers who pur- follow. For each vertical, we collected data on the users who chased the product. The retailer is then limited to select responded to a certain post as well as their neighbors, and influential users from the set of users who purchased the applied our methods on this data. Our experiments show product. In general, we will call the core set the set of users that adaptive seeding is scalable, and importantly, that it an influence maximization campaign can access. When the obtains dramatic improvements over standard approaches goal is to select influential users from the core set, the laws of information dissemination. that govern social networks can lead to poor outcomes. Due to the heavy-tailed degree distribution of social networks, 1. INTRODUCTION high degree nodes are rare, and since influence maximiza- The massive adoption of social networking services in re- tion techniques often depend on the ability to select high cent years creates a unique platform for promoting ideas and degree nodes, a naive application of influence maximization spreading information. Communication through online so- techniques to the core set can become ineffective. cial networks leaves traces of behavioral data which allow observing, predicting and even engineering processes of in- An adaptive approach. An alternative approach to spend- formation diffusion. First posed by Domingos and Richard- ing the entire budget on the core set is an adaptive two-stage son [7, 25] and elegantly formulated and further developed approach. In the first stage, one can spend a fraction of the by Kempe, Kleinberg, and Tardos [14], influence maximiza- budget on the core users so that they invite their friends to tion is the algorithmic challenge of selecting a fixed number participate in the campaign, then in the second stage spend the rest of the budget on the influential friends who hopefully have arrived. The idea behind this approach is to leverage a structural phenomenon in social networks known as the friendship paradox [9]. Intuitively, the friendship paradox Permission to make digital or hard copies of all or part of this work for says that individuals are not likely to have many friends, personal or classroom use is granted without fee provided that copies are but they likely have a friend that does (\your friends have not made or distributed for profit or commercial advantage and that copies more friends than you"). In Figure1 we give an example of bear this notice and the full citation on the first page. To copy otherwise, to such an effect by plotting a CDF of the degree distribution republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. of a core set of users who responded to a post on Facebook Copyright 20XX ACM X-XXXXX-XX-X/XX/XX ...$15.00. and the degree distribution of their friends. Remarkably, there are also formal guarantees of such effects. Recent work Scalability. One of the challenges in adaptive seeding is shows that for any network that has a power law degree dis- scalability. This is largely due to the stochastic nature of the tribution and a small fraction of random edges, there is an problem derived from uncertainty about arrival of neighbors. asymptotic gap between the average degree of small samples The main result in [27] is a constant factor approximation of nodes and that of their neighbors, with constant proba- algorithm for well-studied influence models such as indepen- bility [18]. The implication is that when considering the dent cascade and linear threshold which is, at large, a the- core users (e.g. those who visit the online store) as random oretical triumph. These algorithms rely on various forms samples from a social network, any algorithm which can use of sampling, which lead to a significant blowup in the in- their neighbors as influencers will have dramatic improve- put size. While such techniques provide strong theoretical ment over the direct application of influence maximization. guarantees, for social network data sets which are often ei- ther large or massive, such approaches are inapplicable. The Warmup. Suppose we are given a network, a random set of main technical challenge we address in this work is how to core users X and a budget k, and the goal is to select a sub- design scalable adaptive optimization techniques for influ- set of nodes in X of size t ≤ k which has the most influential ence maximization which do not require sampling. set of neighbors of size k − t. For simplicity, assume for now that the influence of a set is simply its average degree. If Beyond random users. The motivation for the adaptive we take the k=2 highest degree neighbors of X, then surely approach hinges on the friendship paradox, but what if the there is a set S of size at most k=2 in X connected to this core set is not a random sample? The results in [18] hold set, and selecting S would be a two-approximation to this when the core set of users is random but since users who problem. In comparison, the standard approach of influence follow a particular topic are not a random sample of the maximization is to select the k highest degree nodes in X. network, we must somehow evaluate adaptive seeding on Thus, standard influence maximization would have k of the representative data sets. The experimental challenge is to most influential nodes in X while the approximation algo- estimate the prominence of high degree neighbors in settings rithm we propose has k=2 of the most influential nodes from that are typical of viral marketing campaigns. Figure1 is a its set of neighbors. How much better or worse is it to use foreshadowing of the experimental methods we used to show this approach over the standard one? If the network has a that an effect similar to the friendship paradox exists in such power-law degree distribution with a small fraction of ran- cases as well. dom edges, and influence is measured in terms of sum of de- grees of a set, then the results of [18] discussed above imply Main results. Our main results in this paper show that that the two-stage approach which allows seeding neighbors adaptive seeding is a scalable approach which can dramat- can do asymptotically (in the size of the network) better. ically improve upon standard approaches of influence max- Thus, at least intuitively, it looks as if two-stage approaches imization. We present a general method that enables de- may be worth investigating. signing adaptive seeding algorithms in a manner that avoids sampling, and thus makes adaptive seeding scalable to large In this paper, our goal is to study the potential benefits size graphs. We use this approach as a basis for design- of adaptive approaches for influence maximization. We are ing two algorithms, both achieving an approximation ratio largely motivated by the following question. of (1 − 1=e) for the adaptive problem. The first algorithm is implemented through a linear program, which proves to Can adaptive optimization lead to significant improvements be extremely efficient over instances where there is a large in influence maximization? budget. The second approach is a combinatorial algorithm with the same approximation guarantee which can be easily To study this question we use the adaptive seeding model parallelized, has good theoretical guarantees on its running recently formalized in [27]. The main distinctions from the time and does well on instances with smaller budgets. The caricature model in the warmup problem above is that in guarantees of our algorithms hold for linear models of in- adaptive seeding the core set X can be arbitrary (it does not fluence, i.e.
Recommended publications
  • The Long-Term Benefits of Positive Self-Presentation Via Profile
    fpsyg-08-01981 November 14, 2017 Time: 17:23 # 1 ORIGINAL RESEARCH published: 15 November 2017 doi: 10.3389/fpsyg.2017.01981 The Long-Term Benefits of Positive Self-Presentation via Profile Pictures, Number of Friends and the Initiation of Relationships on Facebook for Adolescents’ Self-Esteem and the Initiation of Offline Relationships Anna Metzler* and Herbert Scheithauer Developmental Science and Applied Developmental Psychology, Freie Universität Berlin, Berlin, Germany Social networking sites are a substantial part of adolescents’ daily lives. By using a longitudinal approach the current study examined the impact of (a) positive self- presentation, (b) number of friends, and (c) the initiation of online relationships on Facebook on adolescents’ self-esteem and their initiation of offline relationships, as Edited by: well as the mediating role of positive feedback. Questionnaire data were obtained Kai S. Cortina, from 217 adolescents (68% girls, mean age 16.7 years) in two waves. Adolescents’ University of Michigan, United States positive self-presentation and number of friends were found to be related to a higher Reviewed by: Burkhard Gniewosz, frequency of receiving positive feedback, which in turn was negatively associated with University of Salzburg, Austria self-esteem. However, the number of Facebook friends had a positive impact on self- Katherine Fiori, esteem, and the initiation of online relationships positively influenced the initiation of Adelphi University, United States offline relationships over time, demonstrating that Facebook
    [Show full text]
  • Friendship Paradox in Growth Networks: Analytical and Empirical Analysis
    Sidorov et al. Appl Netw Sci (2021) 6:51 https://doi.org/10.1007/s41109-021-00391-6 Applied Network Science RESEARCH Open Access Friendship paradox in growth networks: analytical and empirical analysis Sergei P. Sidorov* , Sergei V. Mironov and Alexey A. Grigoriev *Correspondence: [email protected] Abstract Saratov State University, Many empirical studies have shown that in social, citation, collaboration, and other Saratov, Russia 410012 types of networks in real world, the degree of almost every node is less than the aver- age degree of its neighbors. This imbalance is well known in sociology as the friendship paradox and states that your friends are more popular than you on average. If we intro- duce a value equal to the ratio of the average degree of the neighbors for a certain node to the degree of this node (which is called the ‘friendship index’, FI), then the FI value of more than 1 for most nodes indicates the presence of the friendship paradox in the network. In this paper, we study the behavior of the FI over time for networks generated by growth network models. We will focus our analysis on two models based on the use of the preferential attachment mechanism: the Barabási–Albert model and the triadic closure model. Using the mean-feld approach, we obtain diferential equa- tions describing the dynamics of changes in the FI over time, and accordingly, after obtaining their solutions, we fnd the expected values of this index over iterations. The results show that the values of FI are decreasing over time for all nodes in both models.
    [Show full text]
  • Network Interventions Based on Inversity: Leveraging the Friendship Paradox in Unknown Network Structures
    Network Interventions Based on Inversity: Leveraging the Friendship Paradox in Unknown Network Structures Vineet Kumar,1∗ David Krackhardt,2 Scott Feld3 1 Yale School of Management, Yale University. 2Heinz School of Public Policy and Management, Carnegie Mellon University 3 Department of Sociology, College of Liberal Arts, Purdue University. ∗To whom correspondence should be addressed; E-mail: [email protected] Network intervention problems benefit from selecting a more connected node, which is more likely to result in stronger indirect effects. However, in many network contexts, the structure of the network is unknown. We derive and examine the mathematical properties of two distinct “informationally light” strategies, a global strategy and local strategy, that yield higher degree nodes in virtually any network structure. These strategies are based on the friend- ship paradox: “your friends have more friends that you do.” We further iden- tify a novel network property called Inversity, which connects the fundamental parameters of these two strategies. We prove that the sign of Inversity for any given network determines which of the two strategies will be most effective in that network. We assess the performance of these strategies across a wide range of generative network models and real networks, and we show how to leverage network structure through these strategies even when the network structure is unknown. 1 Network-based interventions are of crucial importance in any setting where an individual’s choice or action has a multiplier impact on others, with a wide range of applications. Consider the following network intervention problems: (a) A new infectious disease is spreading through a large population.
    [Show full text]
  • The Structure of Social Networks: Modeling, Sampling, and Inference
    The Structure of Social Networks: Modeling, Sampling, and Inference Naghmeh Momeni Taramsari Doctor of Philosophy Department of Electrical and Computer Engineering McGill University Montreal,Quebec April 2017 A thesis submitted to McGill University in partial fulllment of the requirements of the degree of Doctor of Philosophy c Naghmeh Momeni Taramsari, 2017 TABLE OF CONTENTS ABSTRACT . vi ABRÉGÉ . vii ACKNOWLEDGEMENTS . viii PREFACE AND CONTRIBUTION OF AUTHORS . ix LIST OF FIGURES . x LIST OF TABLES . xiii 1 Introduction . 1 1.1 Network Perspective . 1 1.2 Notation and Terminology . 3 1.3 Historical Background on Network Science . 5 1.4 Social Networks and Social Outcomes . 7 1.5 Thesis Outline . 9 1.6 Publications . 12 2 Network Sampling . 13 2.1 Chapter Outline . 13 iii 2.2 Introduction . 13 2.3 Challenges of Sampling Oine Social Networks . 15 2.4 Fixed-choice Designs . 16 2.5 Chapter Summary . 17 3 Paper: Statistical Inference for Fixed-choice Design Incorporating Strong and Weak Ties . 18 4 Additional Simulation Results for Network Sampling . 52 4.1 Chapter Outline . 52 4.2 Introduction . 52 4.3 Transitivity . 53 4.4 Community Structure . 53 4.5 Popularity Bias . 54 4.6 Chapter Summary . 58 5 Introduction to Alter Sampling . 59 5.1 Chapter Outline . 59 5.2 Introduction . 59 5.3 Applications of Alter Sampling . 60 5.3.1 Acquaintance Vaccination . 60 5.3.2 Health Monitoring . 62 5.3.3 Information Diusion on Social Media . 63 5.3.4 Early Detection of Natural Disasters . 64 5.3.5 Health Intervention . 64 5.4 Chapter Summary . 65 6 Paper: Eectiveness of Alter Sampling in Various Social Networks .
    [Show full text]
  • 1 Peer Effects in Tournaments for Status
    Peer Effects in Tournaments for Status: Evidence from Rank Dynamics of U.S. Colleges and Universities* Noah S. Askin, University of Chicago, [email protected] Matthew S. Bothner, European School of Management and Technology, [email protected] Abstract Individual outcomes in tournaments for status result not only from participants’ own qualities and behaviors, but also from those of their most proximate peers. In this article, we take an alter-centric view of status dynamics, examining the effect of peers’ perceived quality on future changes in a focal organization’s status. Utilizing the yearly tournaments created by U.S. News & World Report’s rankings of national colleges and universities, two competing predictions are investigated. The first is that peer’ advances in perceived quality impair the future status of a focal school, reflecting inter-school competition for finite resources and rewards. The second is that peers’ improvements incite a focal school to make cosmetic or material adjustments, leading to an increase in its status. Peers are defined in two ways: by proximity in the prior iteration of the tournament and by network-based structural equivalence. Using fixed effects models predicting future changes in annual USN ranks, we observe opposing forces at work, depending on the type of peer exerting influence. When peers identified by prior rank proximity improve in perceived quality, they exert status-eroding effects on a focal school. Conversely, when structurally equivalent peers in the college-applicant market show improvement, the focal school subsequently increases in status. We examine the mechanisms responsible for this divergence by focusing on the bases of each type of peer-affiliation, presenting interaction effects that highlight the contextual conditions that shape the influence of peers on status change.
    [Show full text]
  • Contact Strength and the Friendship Paradox in Social Networks
    2017 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining Which friends are more popular than you? Contact strength and the friendship paradox in social networks James P. Bagrow1, Christopher M. Danforth1 and Lewis Mitchell2 Abstract—The friendship paradox states that in a social degree relates to many personality traits such as introver- network, egos tend to have lower degree than their alters, or, sion [13], and perceptual biases also factor into the effects “your friends have more friends than you do”. Most research of the friendship paradox [14]. All of these phenomena in has focused on the friendship paradox and its implications for information transmission, but treating the network as static and concert provide a deeper understanding of how social networks unweighted. Yet, people can dedicate only a finite fraction of form under cognitive and attentional limits, how information their attention budget to each social interaction: a high-degree can move between individuals via the network, and to what individual may have less time to dedicate to individual social extent the individual’s embedded view corresponds to the links, forcing them to modulate the quantities of contact made to actual network or information within it. their different social ties. Here we study the friendship paradox in the context of differing contact volumes between egos and alters, The friendship paradox along with the strength of weak ties finding a connection between contact volume and the strength play significant roles in how one is exposed to information of the friendship paradox. The most frequently contacted alters socially. By increasing the size of his or her social circle, an exhibit a less pronounced friendship paradox compared with the individual can gain access to a potentially overwhelming array ego, whereas less-frequently contacted alters are more likely to of information.
    [Show full text]
  • Reputation and Networks Studies in Reputation Effects and Network Formation
    Research Collection Doctoral Thesis Reputation and Networks Studies in Reputation Effects and Network Formation Author(s): Wehrli, Stefan Publication Date: 2014 Permanent Link: https://doi.org/10.3929/ethz-a-010432336 Rights / License: In Copyright - Non-Commercial Use Permitted This page was generated automatically upon download from the ETH Zurich Research Collection. For more information please consult the Terms of use. ETH Library DISS. ETH NO. 22476 Reputation and Networks Studies in Reputation Effects and Network Formation A thesis submitted to attain the degree of DOCTOR OF SCIENCES of ETH ZURICH (Dr. sc. ETH Zurich) presented by STEFAN WEHRLI lic. rer. soc., University of Bern born on October 13, 1974 citizen of Küttigen, AG Prof. Dr. Andreas Diekmann (examiner) Prof. Dr. Andreas Flache (co-examiner) Prof. Dr. Ryan Murphy (co-examiner) 2014 Acknowledgments This dissertation could not have been written without the support of many people. First of all, I would like to thank my advisor Andreas Diekmann for giving me the opportunity and the freedom to follow my curiosity. I am especially thankful to Andreas for creating an inspiring atmosphere and community that allowed me and my colleagues to pursue ideas that leave his center of gravity. He has been my advisor for many years now, but time and again his comments and ideas have offered new insights. Andreas has taught me the fundamentals of social theory, practical knowledge of empirical research, statistics, game theory, and also en- couraged me to pursue studies in social network analysis that I had the privilege to teach at the ETH for several years.
    [Show full text]
  • The Friendship Paradox and Systematic Biases in Perceptions and Social Norms
    The Friendship Paradox and Systematic Biases in Perceptions and Social Norms Matthew O. Jackson ∗ Revised: October 2016 Abstract The \friendship paradox" (Feld(1991)) states that, on average, people have strictly fewer friends than their friends do. This is an accounting identity that stems from the fact that people with more friends are counted as friends by more people. The point of this paper is that this over-representation of the most popular people in others' samples distorts perceptions of norms and amplifies resulting behaviors to match those perceived norms. I show that there are two things that drive people with more friends to behave more extremely than people with fewer friends and thus to distort the perceived norms. The first is that in any setting with strategic complementarities, people with more friends have more social interaction and hence more complementarity to their actions. The second is that people who have the most innate preference for a given activity form more relationships as they benefit most from the complementarities. As proven here, these two effects lead people with more friends to choose more extreme actions, which in turn feeds back via the friendship paradox to increase overall perceptions of behavior and then via complementarities to amplify average behavior. These theoretical results are consistent with the multitude of studies finding that students (from middle school through university) consistently overestimate peer consumption of alcohol, cigarettes, and drugs. This amplifies students' own behaviors, and can help explain problems with adolescent abuse of drugs and binge-drinking, as well as other behaviors. The analysis explains why policies that simply inform students of actual norms are effective in improving the accuracy of their perceptions and reducing behavior.
    [Show full text]
  • HZS C2BRNE DIARY – October 2020 1
    1 HZS C2BRNE DIARY – October 2020 www.cbrne-terrorism-newsletter.com 2 HZS C2BRNE DIARY – October 2020 HZS C2BRNE DIARY– 2020© October 2020 Website: www.cbrne-terrorism-newsletter.com Editor-in-Chief BrigGEN (ret.) Ioannis Galatas MD, MSc, MC (Army) PhD cand Consultant in Allergy & Clinical Immunology Medical/Hospital CBRNE Planner & Instructor Senior Asymmetric Threats Analyst Manager, CBRN Knowledge Center @ International CBRNE Institute (BE) Senior CBRN Consultant @ HotZone Solutions Group (NL) Athens, Greece Contact e-mail: [email protected] Editorial Team ⚫ Bellanca Giada, MD, MSc (Italy) ⚫ Hopmeier Michael, BSc/MSc MechEngin (USA) ⚫ Kiourktsoglou George, BSc, Dipl, MSc, MBA, PhD (UK) ⚫ Photiou Steve, MD, MSc EmDisaster (Italy) ⚫ Tarlow Peter, PhD Sociol (USA) A publication of HotZone Solutions Group Prinsessegracht 6, 2514 AN, The Hague, The Netherlands T: +31 70 262 97 04, F: +31 (0) 87 784 68 26 E-mail: [email protected] DISCLAIMER: The HZS C2BRNE DIARY® (former CBRNE-Terrorism Newsletter), is a free online publication for the fellow civilian/military CBRNE First Responders worldwide. The Diary is a collection of papers/articles related to the stated thematology. Relevant sources/authors are included and all info provided herein is from open Internet sources. Opinions and comments from the Editor, the Editorial Team or the authors publishing in the Diary do not necessarily represent those of the HotZone Solutions Group (NL) or the International CBRNE Institute (BE). COVER: UAE-based gynaecologist Dr Samer Cheaib shared
    [Show full text]
  • Investigating Social Networks with Agent Based Simulation and Link Prediction Methods
    Investigating Social Networks with Agent Based Simulation and Link Prediction Methods Angelico Giovanni Fetta School of Mathematics A thesis presented for the degree of Doctor of Philosophy 2014 Summary Social networks are increasingly being investigated in the context of individual behaviours. Research suggests that friendship connections have the ability to influence individual ac- tions, change personal opinions and subsequently impact upon personal wellbeing. This thesis aims to investigate the effects of social networks, through the use of Agent Based Simulation (ABS) and Link Prediction (LP) methods. Three main investigations form this thesis, culminating in the development of a new simulation-based approach to Link Predic- tion (PageRank-Max) and a model of behavioural spread through a connected population (Behavioural PageRank-Max). The first project investigates the suitability of ABS to explore a connected social system. The Peter Principle is a theory of managerial incompetence, having the potential to cause detrimental effects to system efficiency. Through the investigation of a theoretical hierar- chy of workplace social contacts, it is observed that the structure of a social network has the ability to impact system efficiency, demonstrating the importance of social network structure in conjunction with individual behaviours. The second project aims to further understand the structure of social networks, through the exploration of adolescent offline friendship data, taken from ‘A Stop Smoking in Schools Trial’ (ASSIST). An initial analysis of the data suggests certain factors may be pertinent in the formation of school social networks, identifying the importance of centrality mea- sures. An ABS aiming to predict the evolution of the ASSIST social networks is created, developing an algorithm based upon the optimisation of an individual’s eigen-centrality - termed PageRank-Max.
    [Show full text]
  • Identifying Prominent Actors in Social Networks
    Internal Report 2011–10 August 2011 Universiteit Leiden Opleiding Informatica Identifying Prominent Actors in Social Networks Iris Hupkens BACHELOR THESIS Leiden Institute of Advanced Computer Science (LIACS) Leiden University Niels Bohrweg 1 2333 CA Leiden The Netherlands Bachelor Thesis Identifying Prominent Actors in Social Networks Iris Hupkens August 9, 2011 Abstract In this thesis we investigate how to automatically identify the promi- nent actors in social networks, so that they can for instance be targeted for viral marketing. To do this, we look at characteristics of the friendship graph and apply data mining methods from the Weka toolkit. We compare the set of nodes resulting from these methods with a set of nodes that are known to represent celebrities. When only a group of people equal in size to the group of celebrities is considered to possibly be prominent, using only the degree centrality turns out to result in an accuracy larger than methods with a higher time complexity. The HITS algorithm is found to work better on social networks than looking at degree centrality when a larger group is considered to possibly be prominent. A Bayesian network using various qualities, such as the average degree of someone’s friends, can be used to nominate a set of nodes which contains even more celebrities. This implies that the method of looking at degree centrality to determine which actors are prominent is good enough when only a small group of people is to be selected, but that it starts losing some of its effectivity when the goal is to target the largest amount of prominent actors possi- ble.
    [Show full text]
  • Social Networks and Health: New Developments in Diffusion, Online and Offline
    SO45CH05_Centola ARjats.cls July 10, 2019 12:33 Annual Review of Sociology Social Networks and Health: New Developments in Diffusion, Online and Offline Jingwen Zhang1 and Damon Centola2 1Department of Communication, University of California, Davis, California 95616, USA 2Annenberg School for Communication, University of Pennsylvania, Philadelphia, Pennsylvania 19104, USA; email: [email protected] Annu. Rev. Sociol. 2019. 45:91–109 Keywords The Annual Review of Sociology is online at simple contagions, complex contagions, behavior change, online social soc.annualreviews.org networks, network interventions, diffusion https://doi.org/10.1146/annurev-soc-073117- 041421 Abstract Copyright © 2019 by Annual Reviews. Annu. Rev. Sociol. 2019.45:91-109. Downloaded from www.annualreviews.org The relationship between social networks and health encompasses every- Access provided by University of Pennsylvania on 09/30/19. For personal use only. All rights reserved thing from the flow of pathogens and information to the diffusion of beliefs and behaviors. This review addresses the vast and multidisciplinary litera- ture that studies social networks as a structural determinant of health. In particular, we report on the current state of knowledge on how social conta- gion dynamics influence individual and collective health outcomes. Wepay specific attention to research that leverages large-scale online data and social network experiments to empirically identify three broad classes of contagion processes: pathogenic diffusion, informational and belief diffusion, and be- havioral diffusion. We conclude by identifying the need for more research on (a) how multiple contagions interact within the same social network, (b) how online social networks impact offline health, andc ( ) the effective- ness of social network interventions for improving population health.
    [Show full text]