Finding Large Balanced Subgraphs in Signed Networks

Total Page:16

File Type:pdf, Size:1020Kb

Finding Large Balanced Subgraphs in Signed Networks Finding large balanced subgraphs in signed networks Bruno Ordozgoiti Antonis Matakos Aristides Gionis∗ Aalto University Aalto University KTH Royal Institute of Technology [email protected] [email protected] [email protected] ABSTRACT Signed networks are graphs whose edges are labelled with either a + + - - + + - - positive or a negative sign, and can be used to capture nuances in interactions that are missed by their unsigned counterparts. The + + - - concept of balance in signed graph theory determines whether a network can be partitioned into two perfectly opposing subsets, and Figure 1: The four possible signed triangles. The two on the is therefore useful for modelling phenomena such as the existence left are balanced, while the two on the right are not. of polarized communities in social networks. While determining whether a graph is balanced is easy, finding a large balanced sub- Many social-media platforms can be represented by graphs. Thus, graph is hard. The few heuristics available in the literature for this graph theory has found a variety of applications in this domain purpose are either ineffective or non-scalable. In this paper we over the last few decades, such as community detection [13], parti- propose an efficient algorithm for finding large balanced subgraphs tioning [4], and recommendation [30]. One limitation of the graph in signed networks. The algorithm relies on signed spectral theory representations usually employed in the literature is that they can and a novel bound for perturbations of the graph Laplacian. In capture the existence, or even the strength, of connections between a wide variety of experiments on real-world data we show that vertices, but not their disposition. For instance, in a social network, our algorithm can find balanced subgraphs much larger than those vertices may represent people and edges interactions between them. detected by existing methods, and in addition, it is faster. We test By relying just on this information we cannot know whether each its scalability on graphs of up to 34 million edges. interaction is friendly or hostile. Signed graphs can be used to overcome this limitation. In signed CCS CONCEPTS graphs, each edge is labeled with either a positive or negative sign. • Theory of computation → Graph algorithms analysis. If a graph represents social interactions, signs can be employed to determine whether these interactions are friendly or not. Thus, KEYWORDS signed graphs constitute a good representation for detecting polar- ized groups in online debates. Signed graphs were first introduced graph mining, signed graphs, dense subgraph, community detection by Harary to study the concept of balance [17]. A signed graph is ACM Reference Format: said to be balanced if its vertices can be partitioned into two sets in Bruno Ordozgoiti, Antonis Matakos, and Aristides Gionis. 2020. Finding perfect agreement with the edge signs; that is, every edge within large balanced subgraphs in signed networks. In Proceedings of The Web each set is positive and every edge between the two sets is negative. Conference 2020 (WWW ’20), April 20–24, 2020, Taipei, Taiwan. ACM, New Equivalently, a signed graph is balanced when the product of the York, NY, USA, 11 pages. https://doi.org/10.1145/3366423.3380212 signs of every cycle is positive. This is analogous to the common- place notion “the friend of a friend is a friend,” “the enemy of a 1 INTRODUCTION friend is an enemy,” etc., as illustrated in Fig. 1. Social-media platforms have taken hold as one of the main forms A substantial body of work has been devoted to studying the of communication in today’s society. Despite having served to fa- spectral properties of signed graphs, which have strong connec- cilitate connections between individuals, in recent years we have tions to the concept of balance. In particular, the spectrum of the arXiv:2002.00775v1 [cs.SI] 3 Feb 2020 observed an array of negative phenomena associated to these tech- Laplacian matrix of a signed graph reveals whether it is balanced nologies. Among other, these platforms seem to contribute to the [23]. Graphs found in real applications are often not balanced, and polarization of political deliberation, which can be detrimental to therefore the question of finding a balanced subgraph arises nat- the health of democracy. Thus, the study of methods to detect and urally. The problem of finding a maximum balanced subgraph be mitigate polarization in online debates is becoming an increasingly formulated in terms of vertex cardinality (MBS) or edge cardinality compelling topic [14, 15, 26, 28, 29, 33]. (MBS-EDGE). Both formulations lead to NP-hard problems, thus, the development of efficient heuristics to approximately solve this ∗This work was done while the author was with Aalto University. problem is well motivated. In this paper we present an algorithm to find large balanced This paper is published under the Creative Commons Attribution 4.0 International subgraphs in signed networks. The algorithm works in two stages. (CC-BY 4.0) license. Authors reserve their rights to disseminate the work on their personal and corporate Web sites with the appropriate attribution. First, we rely on spectral theory, as well as on a novel bound for per- WWW ’20, April 20–24, 2020, Taipei, Taiwan turbations of the Laplacian, to develop a greedy method to remove © 2020 IW3C2 (International World Wide Web Conference Committee), published vertices and uncover a balanced subgraph. Then, any removed ver- under Creative Commons CC-BY 4.0 License. ACM ISBN 978-1-4503-7023-3/20/04. tices that do not violate the balance of the located structure are https://doi.org/10.1145/3366423.3380212 restored. We derive analytical properties that allow us to efficiently WWW ’20, April 20–24, 2020, Taipei, Taiwan Ordozgoiti, Matakos & Gionis. implement the algorithm. Finally, we devise a random sampling a generalization of the standard MaxCut problem, and thus, NP- strategy to significantly enhance the scalability of the method. hard. To obtain an exact solution, the problem has been studied in In a variety of experiments on real-world and synthetic data, we the context of fixed-parameter tractability (FPT). Hüffner et al. [21] show that the proposed algorithm finds larger balanced subgraphs propose an FPT algorithm for deciding whether the maximum bal- than alternative heuristics from the literature, both in terms of anced subgraph has size at least m − k, where k is the parameter. vertex and edge count. Furthermore, the proposed algorithm has the Motivated by the lower bound of Poljak and Turzík, Crowston et desirable properties that (i) it runs faster than any other competing al. [9] give an FPT algorithm for deciding whether the maximum m n−1 k method, (ii) it can be tuned to trade off running time and solution balanced subgraph has at least 2 + 4 + 4 edges, where k is the quality, and (iii) produces a vertex-removal sequence, which can be parameter. These algorithms are not practical, as their running time used to trade off balance and graph size. We validate the scalability is exponetial in k and the degree of the polynomial in n is large. of the method by testing it on graphs of up to 34 million edges. The MBS-EDGE problem has also been considered in application- Our contributions are summarized as follows: driven studies, and different heuristics have been proposed. Das- • We propose an algorithm for finding large balanced subgraphs Gupta et al. [10] consider an edge-deletion formulation of the MBS- in signed graphs, based on spectral theory and its connections EDGE problem in the context of biological networks. Motivated by to balance. the MaxCut connection, the authors develop an algorithm based on • We give an upper bound for the smallest Laplacian eigenvalue semidefinite programming relaxation (SDP); the approach, however, after removing a set of vertices, which allows us to efficiently is not scalable and tested only on very small networks. Figueiredo trim the graph to find a balanced subgraph. and Frota [12] ask to find a balanced subgraph that maximizes the • We experimentally show that our algorithm finds subgraphs number of vertices. They propose and experiment with a branch- much larger than those found by state-of-the-art methods. and-cut exact approach, a heuristic based on minimum-spanning • We devise a random sampling strategy to significantly enhance tree computation, and a heuristic combining a greedy algorithm the scalability of the method, and show empirically that the and local-search. We experimentally compare the proposed method quality of the output is not affected. with these heuristics in our empirical evaluation. The rest of this paper is structured as follows. We discuss related Community detection in signed graphs. Different approaches work in Section 2. In Section 3 we introduce our notation and have been proposed for community detection in signed graphs, relevant notions. In Section 4 we describe our algorithm in detail some of which try to incorporate balance theory. Anchuri et al. [2] and discuss relevant considerations, and in Section 5 we show our propose a spectral approach to partition a signed graph into a experimental results. Finally, Section 6 is a short conclusion. number of non-overlapping balanced communities. Yang et al. [34] propose a random-walk-based approach for partitioning a signed 2 RELATED WORK graph into communities, where in addition to positive edges within clusters and negative edges across clusters, they also want to max- Signed graphs and balance theory. Signed graphs were first stud- imize cluster densities. Doreian and Mrvar [11] propose an algo- ied by Harary, who was interested in the notion of balance [17]. In rithm for partitioning a signed directed graph so as to minimize 1956, Cartwright and Harary generalized Heider’s psychological a measure of imbalance.
Recommended publications
  • Structural Balance and Partitioning Signed Graphs
    Structural Balance and Partitioning Signed Graphs Patrick Doreian Andrej Mrvar Department of Sociology Faculty of Social Sciences University of Pittsburgh University of Ljubljana Abstract Signed graphs have been used frequently to model affect ties for social actors. In this context, structural balance theory has been used as a theory for the organization and form of these relations. Based on a graph theoretical formalization of this theory, for signed graphs, there are theorems stating that balanced structures have clear parti- tioned forms. We discuss the use of local optimization procedures as a method of obtaining these partitioned structures – or partitioned structures that are as close to a balanced partition as possible for structures that are not balanced. In addition, this method provides a measure of the extent to which a signed graph is imbalanced. For a time series of signed graphs, this permits a test of the balance hypoth- esis that human groups tend towards balance over time. Examples are provided of interpersonal ties in networks and institutionalized rela- tions among collective units. Since the pioneering work of Heider (1946) there has been an enduring concern with theories of structural balance. See, for example, Taylor (1970) and Forsythe (1990). Central to this formulation is the idea of triads made up of two actors, p and q, and some object, x. There is a direct social relation between the two actors and there are unit formation links between the actors and the object. The set of such triads is displayed in Figure 1. The relation between the actors can be positive (for example, liking) or negative (disliking) and the unit formation relations can be positive (for example, approve) or negative (disapprove).
    [Show full text]
  • Balance and Fragmentation in Societies with Homophily and Social Balance Tuan M
    www.nature.com/scientificreports OPEN Balance and fragmentation in societies with homophily and social balance Tuan M. Pham1,2, Andrew C. Alexander3, Jan Korbel1,2, Rudolf Hanel1,2 & Stefan Thurner1,2,4* Recent attempts to understand the origin of social fragmentation on the basis of spin models include terms accounting for two social phenomena: homophily—the tendency for people with similar opinions to establish positive relations—and social balance—the tendency for people to establish balanced triadic relations. Spins represent attribute vectors that encode G diferent opinions of individuals whose social interactions can be positive or negative. Here we present a co-evolutionary Hamiltonian model of societies where people minimise their individual social stresses. We show that societies always reach stationary, balanced, and fragmented states, if—in addition to homophily— individuals take into account a signifcant fraction, q, of their triadic relations. Above a critical value, qc , balanced and fragmented states exist for any number of opinions. Te concept of so-called flter bubbles captures the fragmentation of society into isolated groups of people who trust each other, but clearly distinguish themselves from “other”. Opinions tend to align within groups and diverge between them. Interest in this process of social disintegration, started by Durkheim 1, has experienced a recent boost, fuelled by the availability of modern communication technologies. Te extent to which societies fragment depends largely on the interplay of two basic mechanisms that drive social interactions: homophily and structural balance. Homophily is the “principle” that “similarity breeds connection”2. In particular, for those individuals who can be characterised by some social traits, such as opinions on a range of issues, homophily appears as the tendency of like-minded individuals to become friends 3.
    [Show full text]
  • Chapter 5 Positive and Negative Relationships
    From the book Networks, Crowds, and Markets: Reasoning about a Highly Connected World. By David Easley and Jon Kleinberg. Cambridge University Press, 2010. Complete preprint on-line at http://www.cs.cornell.edu/home/kleinber/networks-book/ Chapter 5 Positive and Negative Relationships In our discussion of networks thus far, we have generally viewed the relationships con- tained in these networks as having positive connotations — links have typically indicated such things as friendship, collaboration, sharing of information, or membership in a group. The terminology of on-line social networks reflects a largely similar view, through its em- phasis on the connections one forms with friends, fans, followers, and so forth. But in most network settings, there are also negative effects at work. Some relations are friendly, but others are antagonistic or hostile; interactions between people or groups are regularly beset by controversy, disagreement, and sometimes outright conflict. How should we reason about the mix of positive and negative relationships that take place within a network? Here we describe a rich part of social network theory that involves taking a network and annotating its links (i.e., its edges) with positive and negative signs. Positive links represent friendship while negative links represent antagonism, and an important problem in the study of social networks is to understand the tension between these two forces. The notion of structural balance that we discuss in this chapter is one of the basic frameworks for doing this. In addition to introducing some of the basics of structural balance, our discussion here serves a second, methodological purpose: it illustrates a nice connection between local and global network properties.
    [Show full text]
  • Chapter 5 Positive and Negative Relationships
    Chapter 5 Positive and Negative Relationships Often, knowing just the nodes and edges of a network is not enough to understand the full picture — in many settings, we need to annotate these nodes and edges with additional information to capture what’s going on. This is a theme that has come up several times in our discussions already: for example, Granovetter’s work on the strength of weak ties is based on designating links in a social network as strong or weak, and empirical analyses of social networks that evolve over time is based on annotating edges with the periods during which they were “alive.” Here we describe a rich part of social network theory that involves annotating edges with positive and negative signs — to convey the idea that certain edges represent friendship, while other edges represent antagonism. Indeed, an important problem in social networks is to understand the tension between these two forces, and the notion of structural balance that we discuss is one of the basic frameworks for doing this. In addition to introducing some of the basics of structural balance, our discussion here serves a second, methodological purpose: it illustrates a nice connection between local and global network properties. A recurring issue in the analysis of networked systems is the way in which local effects — phenomena involving only a few nodes at a time — can have global consequences that are observable at the level of the network as a whole. Structural balance offers a way to capture one such relationship in a very clean way, and by purely mathematical analysis: we will consider a simple definition abstractly, and find that it inevitably leads to certain macroscopic properties of the network.
    [Show full text]
  • Structural Balance in Signed Networks: Separating the Probability to Interact from the Tendency to Fight∗
    Structural Balance in Signed Networks: Separating the Probability to Interact from the Tendency to Fight∗ J¨urgenLernery Abstract Structural balance theory implies hypothetical network effects such as \the enemy of an enemy is a friend" or \the friend of an enemy is an enemy." To statistically test such hypotheses researchers often estimate whether, for instance, actors have an increased probability to collaborate with the enemies of their enemies and/or a decreased probability to fight the enemies of their enemies. Empirically it turns out that the support for balance theory from these tests is mixed at best. We argue that such results are not necessarily a contradiction to balance theory but that they could also be explained by other network effects that influence the probability to interact at all. We propose new and better interpretable models to assess structural balance in signed networks and illustrate their usefulness with networks of international alliances and conflicts. With the new operationalization the support for balance theory in international relations networks is much stronger than suggested by previous work. Keywords: signed networks, structural balance theory, international re- lations, conditional sign of interaction 1 Introduction Generalizing Heider's theory of cognitive balance (Heider 1946), Cartwright and Harary (1956) called a signed network structurally balanced if every cycle has an even number of negative ties. They proved that a network is balanced if and only if its actors can be divided into two groups with only positive ties within the groups and only negative ties between groups. The fundamental claim of structural balance theory is that actors have a preference for balanced states and if a network is unbalanced then actors have a tendency to increase balance by adapting their ties.
    [Show full text]
  • Structural Balance in Signed Digraphs: Considering Transitivity to Measure Balance in Graphs Constructed by Using Different Link Signing Methods
    Structural balance in signed digraphs: considering transitivity to measure balance in graphs constructed by using different link signing methods Ly Dinh*, Rezvaneh Rezapour*, Lan Jiang, Jana Diesner University of Illinois at Urbana{Champaign * These authors contributed equally to this work Abstract Structural balance theory assumes triads in networks to gravitate towards stable configurations. The theory has been verified for undirected graphs. Since real-world networks are often directed, we introduce a novel method for considering both transitivity and sign consistency for calculating balance in signed digraphs. We test our approach on graphs that we constructed by using different methods for identifying edge signs: natural language process- ing to infer signs from underlying text data, and self-reported survey data. Our results show that for various social contexts and edge sign detection methods, balance is moderately high, ranging from 67.5% to 92.4%. Keywords: Structural balance, Transitivity, Signed digraphs, Natural language processing, Communication networks, Organizational networks 1. Introduction Real-world social and communication networks are composed of complex arXiv:2006.02565v1 [cs.SI] 3 Jun 2020 and continually evolving interactions among social agents. Network scholars have examined core principles that explains patterns of social interactions at various levels of analysis, i.e., at the node level [4], dyadic level [3], triadic level [5, 30], subgroup level [44], and the graph level [31]. Each level of analysis enables different types of hypotheses to be tested, e.g., with respect Email address: {dinh4,rezapou2,lanj3,jdiesner}@illinois.edu (Ly Dinh*, Rezvaneh Rezapour*, Lan Jiang, Jana Diesner) to structural properties, such as reciprocity at the dyad level, transitivity at the triad level, clusterability at the subgroup level, and centralization at the network level [54, 35].
    [Show full text]
  • A Simple Approach for Quantifying Node Centrality in Signed and Directed Social Networks Wei-Chung Liu1 , Liang-Cheng Huang1, Chester Wai-Jen Liu2 and Ferenc Jordán3*
    Liu et al. Applied Network Science (2020) 5:46 Applied Network Science https://doi.org/10.1007/s41109-020-00288-w RESEARCH Open Access A simple approach for quantifying node centrality in signed and directed social networks Wei-Chung Liu1 , Liang-Cheng Huang1, Chester Wai-Jen Liu2 and Ferenc Jordán3* * Correspondence: jordan.ferenc@ gmail.com Abstract 3Balaton Limnological Institute, MTA Centre for Ecological Research, The position of a node in a social network, or node centrality, can be quantified in Klebelsberg Kuno, Tihany 3, 8237, several ways. Traditionally, it can be defined by considering the local connectivity of Hungary a node (degree) and some non-local characteristics (distance). Here, we present an Full list of author information is available at the end of the article approach that can quantify the interaction structure of signed digraphs and we define a node centrality measure for these networks. The basic principle behind our approach is to determine the sign and strength of direct and indirect effects of one node on another along pathways. Such an approach allows us to elucidate how a node is structurally connected to other nodes in the social network, and partition its interaction structure into positive and negative components. Centrality here is quantified in two ways providing complementary information: total effect is the overall effect a node has on all nodes in the same social network; while net effect describes, whether predominately positive or negative, the manner in which a node can exert on the social network. We use Sampson’s like-dislike relation network to demonstrate our approach and compare our result to those derived from existing centrality indices.
    [Show full text]
  • Structural Balance in the Social Networks of a Wild Mammal
    Animal Behaviour 85 (2013) 1397e1405 Contents lists available at SciVerse ScienceDirect Animal Behaviour journal homepage: www.elsevier.com/locate/anbehav Structural balance in the social networks of a wild mammal Amiyaal Ilany a,b,*, Adi Barocas a,c, Lee Koren d, Michael Kam e, Eli Geffen a a Department of Zoology, Tel Aviv University, Israel b National Institute for Mathematical and Biological Synthesis, Knoxville, TN, U.S.A. c Department of Zoology and Physiology and Program in Ecology, University of Wyoming, Laramie, WY, U.S.A. d The Mina and Everard Goodman Faculty of Life Sciences, Bar-Ilan University, Ramat-Gan, Israel e Desert Animal Adaptations and Husbandry, Wyler Department of Dryland Agriculture, The Jacob Blaustein Institutes for Desert Research, Ben Gurion University of the Negev, Beer Sheva, Israel article info The social structure of a population is based on individual social associations, which can be described fi Article history: using network patterns (motifs). Our understanding of the forces stabilizing speci c social structures in Received 6 December 2012 animals is limited. Structural balance theory was proposed for exploring social alliances and suggested Initial acceptance 2 January 2013 that some network motifs are more stable than others in a society. The theory models the presence of Final acceptance 6 March 2013 specific triads in the network and their effect on the global population structure, based on the differential Available online 21 April 2013 stability of specific triad configurations. While structural balance was shown in human social networks, MS. number: A12-00922R2 the theory has never been tested in animal societies.
    [Show full text]
  • Social Network Analysis and Its Applications in Agriculture
    Popular Article www.vigyanvarta.com Vol-1 Issue-6 Naresh and Tamta (2020) Social Network Analysis and its Applications in Agriculture Naresh Kumar. B1 and Meenakshi Tamta2 1Ph.D Scholar, Department of Extension Education, PAU, Ludhiana, Punjab 2Ph.D Scholar, Department of Apparel and Textile Science, PAU, Ludhiana, Punjab Corresponding Author Naresh Kumar. B Email: [email protected] OPEN ACCESS Keywords Social network analysis, nodes, ties, adjacency matrix, Sociomatrix and SNA tools. How to cite this article: Naresh Kumar, B. and Tamta, M. 2020. Social Network Analysis and its Applications in Agriculture. Vigyan Varta 1(6): 23-27. ABSTRACT Social network analysis is a connection between individuals or institutes or organizations which are connected through vertex (nodes) and edges (ties). Vertexes are the individual actors within the networks, and edges are the relationships between the actors. Social network analysis is a graphical representation of the relationship. SNA with its wide range of utility has evolved with applications in various disciplines. some important terminology used in social network analysis were nodes, ties, network, multiplex networks, weighted ties, geodesic distance, degree centrality, betweenness centrality, Eigenvector centrality and closeness centrality. Social network analysis mainly two types, edge list data and Sociomatrix (also known as an Adjacency Matrix). Social network analysis has a wide range of application in Social sciences, adoption studies, monitoring and impact assessment and value chain.
    [Show full text]
  • Examining Spillover Priming Effects from a Network Perspective
    COME A LITTLE CLOSER: EXAMINING SPILLOVER PRIMING EFFECTS FROM A NETWORK PERSPECTIVE David Thomas Morin A Dissertation Submitted to the Graduate College of Bowling Green State University in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY August 2013 Committee: Gi Woong Yun, Ph.D., Advisor Mary M. Murray, Ed.D. Graduate Faculty Representative Sung-Yeon Park, Ph.D. Srinivas Melkote, Ph.D. ii © 2013 David Thomas Morin All Rights Reserved iii ABSTRACT Gi Woong Yun, Advisor Priming theory has been well researched within the field of media studies. Since the late 1980s, priming theory has been used to explain a host of media effects related phenomena. Although priming is one of the most robust theories in media studies, scant research has been paid to spillover/indirect priming effects. Traditional media priming studies examine how primes affect individual evaluations of presidents, but none to date have attempted to examine how individuals perceive little-known political officials via strong or weak ties to a president. To address this glaring gap in the literature, a 3X2 online experiment, manipulating prime valence and tie strength, was conducted. More specifically, a news transcript was manipulated to portray the educational issue, Race to the Top, in either a positive, negative, or neutral tone, with President Obama being portrayed as responsible for the issue. A newspaper article was manipulated to portray a fictional congressional candidate named Steve Easterly as either strongly or weakly tied to President Obama. After exposure to the primes, participants were asked to answer a series of items measuring attitude evaluations and voting intent towards both President Obama and Steve Easterly in a post-test questionnaire.
    [Show full text]
  • A Balance Theory Analysis Including the Noncustodial Parent As a Member of the Family System
    Portland State University PDXScholar Dissertations and Theses Dissertations and Theses 1-1-1984 Stepfamily adjustment: a balance theory analysis including the noncustodial parent as a member of the family system Margaret L. Fujita Portland State University Follow this and additional works at: https://pdxscholar.library.pdx.edu/open_access_etds Let us know how access to this document benefits ou.y Recommended Citation Fujita, Margaret L., "Stepfamily adjustment: a balance theory analysis including the noncustodial parent as a member of the family system" (1984). Dissertations and Theses. Paper 376. https://doi.org/10.15760/etd.376 This Dissertation is brought to you for free and open access. It has been accepted for inclusion in Dissertations and Theses by an authorized administrator of PDXScholar. Please contact us if we can make this document more accessible: [email protected]. STEPFAMILY ADJUSTMENT: A BALANCE THEORY ANALYSIS INCLUDING THE NONCUSTODIAL PARENT AS A MEMBER OF THE FAMILY SYSTEM by MARGARET L. FUJITA A dissertation submitted in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY in URBAN STUDIES Portland State University <S) 1984 Margaret L. Fujita TO THE OFFICE OF GRADUATE STUDIES AND RESEARCH: The members of the Committee approve the dissertation of Margaret L. Fujita presented August 7, 1984. Dr. Nancys. Chapman;airman Dr. Leonard D. iain Dr. Da vlL :::::: I . )~ APPROVED: Kenneth J. Dueker, Acting Dean, School of Urban and Publlc Affalrs Jim F. Ch AN ABSTRACT OF THE DISSERTATION OF Margaret L. Fujita for the Doctor of Philosophy in Urban Studies presented August 7, 1984. Title: Stepfamily Adjustment: A Balance Theory Analysis Including the Noncustodial Parent as a Member of the Family System.
    [Show full text]
  • Bridging Theory and Method: American, European, and Russian Studies’ Took Place at St
    The international conference ‘Networks in the Global World. Bridging Theory and Method: American, European, and Russian Studies’ took place at St. Petersburg State University on June 27-29, 2014. It was organized by the Center for German and European Studies (St. Petersburg State University – Bielefeld University) in cooperation with German Academic Exchange Service, Konrad Adenauer Foundation, International Sociological Association, Junior Sociologists Network of The International Sociological Association, Council of Young Scientists (Faculty of Sociology, St. Petersburg State University), Inter-University Center for Science and Education Programmes in Social Communication, and The Center for Social Technologies. The primary goal of the ‘Networks in the Global World’ conference series is to bring together networks researchers from around the globe. It seeks to unite the efforts of various scientific disciplines in response to the key challenges faced by network studies today, and to exchange local research results – thus allowing an analysis of global processes. The previous NetGloW conference, subtitled ‘Structural Transformations in Europe, the US and Russia’, took place in St. Petersburg on June 22-24, 2012 and brought together more than 150 scientists, political practitioners and business representatives from all around the world. The conference also had a pronounced interdisciplinary character: involving sociologists, philosophers, culture researchers, management specialists and economists (for more information on the event, videos and photos see: http://www.ngw.spbu.ru/node/326). The idea of the 2014 event was to discuss the key current issues and problems of linking theoretical and methodological developments in network analysis. There were several reasons for the choice of this focus. Moving from theory to methods and applications, one can consider networks as a useful metaphor, providing plenty of opportunities for theoretical speculations.
    [Show full text]