SlideShare ist ein Scribd-Unternehmen logo
1 von 57
SOCIALNETWORK
ANALYSIS
LECTURE 4, 14.9.2015
INTRODUCTION TO COMPUTATIONAL SOCIAL SCIENCE (CSS01)
LAURI ELORANTA
• LECTURE 1: Introduction to Computational Social Science [DONE]
• Tuesday 01.09. 16:00 – 18:00, U35, Seminar room114
• LECTURE 2: Basics of Computation and Modeling [DONE]
• Wednesday 02.09. 16:00 – 18:00, U35, Seminar room 113
• LECTURE 3: Big Data and Information Extraction [DONE]
• Monday 07.09. 16:00 – 18:00, U35, Seminar room 114
• LECTURE 4: Network Analysis [TODAY]
• Monday 14.09. 16:00 – 18:00, U35, Seminar room 114
• LECTURE 5: Complex Systems
• Tuesday 15.09. 16:00 – 18:00, U35, Seminar room 114
• LECTURE 6: Simulation in Social Science
• Wednesday 16.09. 16:00 – 18:00, U35, Seminar room 113
• LECTURE 7: Ethical and Legal issues in CSS
• Monday 21.09. 16:00 – 18:00, U35, Seminar room 114
• LECTURE 8: Summary
• Tuesday 22.09. 17:00 – 19:00, U35, Seminar room 114
LECTURESSCHEDULE
• PART 1: SOCIAL NETWORK ANALYSIS DEFINED
• PART 2: NETWORK & GRAPH THEORY BASICS
• PART 3: MATRIX REPRESENTATION
• PART 4: KEY MEASURES
• PART 5: SOCIAL NETWORK ANALYSIS SOFTWARE
• PART 6: SOCIAL NETWORK ANALYSIS EXAMPLES
LECTURE 4OVERVIEW
SOCIALNETWORK
ANALYSISDEFINED
• “Social network analysis (SNA) is a strategy for investigating social structures
through the use of network and graph theories. It characterizes networked
structures in terms of nodes (individual actors, people, or things within the network)
and the ties or edges (relationships or interactions) that connect them. Examples of
social structures commonly visualized through social network analysis include social
media networks, friendship and acquaintance networks, kinship, disease
transmission,and sexual relationships.” (Wikipedia 2015).
• “Social Network analysis is inherently an interdisciplinary endeavor. The concept of
social network analysis developed out of propitious meeting of social theory and
application with formal mathematical, statistical, and computing methodology.”
Stanley Wasserman and Katherine Fuast 1994
• “Social network analysis is neither a theory nor methodology. Rather, it is a
perspective or paradigm. It takes as its starting point the premise that social life is
created primarily and most importantly by relations and the patterns they form.”
Alexandra Marin and Barry Wellman 2011
DEFINITIONS
SOCIALNETWORKANALYSIS=SNA
(Cioffi-Revilla 2014.)
• Characteristics of social networks and social networks as analogy of
some parts of the society are quite common in all major social science
fields (economics, sociology, anthropology, political science,
psychology).
• Social Network Analysis is a paradigmatic viewpoint of society: it
contains the belief, that social universe is formed of and can be modeled
with networks.
• Not just a collection of methods, but also a strong theoretical
perspective: rooted in network and graph theory (in mathematics and in
computer science) and in discrete mathematics.
SOCIALNETWORKASA
VIEWPOINT
(Cioffi-Revilla 2014.)
• Euler and Könisberg bridge –problem already in 1736. Provided the first
principles of graph theory.
• Most active developments in early and mid 1900s.
• Sociogram – a mathematical model of social group in the 1930s
(Jakob.L. Moreno)
• Social structure – based on network model in the 1940s (Alfred
Radcliffe-Brown)
• Matrix calculus introduced to social networks in 1940s and 1950s
• Small world –phenomena presented and demonstrated in the 1950s
and 1960s
• Dynamic networks – 1970s
• First SNA software – 1980s
LONGTRADITIONS IN
NETWORKANALYSIS
(Cioffi-Revilla 2014.)
7 BRIDGES OF
KÖNIGSBERG
The city of Königsberg in Prussia was set on
both sides of the Pregel River, and included
two large islands which were connected to
each other and the mainland by seven bridges.
The problem was to find a walk through the
city that would cross each bridge once and
only once.
(Wikipedia 2015.)
NETWORKAND
GRAPHTHEORY
BASICS
• Nodes/Vertices = the nodes of the network, can also be viewed as entities,
actors, values, sentiments, ideas, locations, attributes etc. depending on the
network at hand
• Edges between the nodes = can also be viewed as connections, links,
associations, relations, affiliations, interactions etc. Depending on the
network at hand
• Graph is a set (aggregation) of nodes and edges forming a social networks.
Thas graph is a network.
• Formally, a a graph G is an ordered pair G = (V, E) comprising a set V of
vertices or nodes together with a set E of edges or lines, which are 2-
element subsets of V (i.e. e={u,v})
COMPONENTS OFA
NETWORK
(Cioffi-Revilla 2014.)
VERTICES & EDGES
a
b
c
d
• Graph G =(V,E)
• V = {a, b, c, d}
• E = {{a,b},{a,c},{b,c},{c,d}}
HELSINKI METRO MAPASA
NETWORK
• Each station is a node
• Each connection is an edge
• Directed edges, , from a to b, but not from b to a
• Undirected edges, meaning, that the edge connects both ways
• Graphs (networks) containing directed edges is called directed graph
• Graphs (networks) containing undirected edges is called undirected
graph
• e.g. a graph describing a process is typically a directed graph
• e.g. a graph modeling metro map is undirected graph
DIFFERENTTYPES OF
NETWORK EDGES
(Cioffi-Revilla 2014.)
DIRECTEDVS. UNDIRECTED
a
b
c
d
a
b
c
d
MIXED GRAPHS
a
b
c
d
• Edges of a graph can have weights
• Typically these model some attribute of intensity, such as probability,
distance, time, etc.
• E.g. distance between cities
• E.g. time between metro stops
• A graph with edge weights is called a weighted graph
WEIGHTED GRAPHS
tampere
turku helsinki
178 km
166 km
162 km
• In a signed graph the edges of the graph contain either plus (+) or minus
(-) sign (or in some applications also 0).
• e.g. signed graphs can be used in modeling political allies/adversaries
• e.g. signed graphs can be used in modeling belief systems
SIGNED GRAPHS
party1
party2 party3
+
+
-
• In multigraphs two nodes maybe be connected with multiple and usually
different types of edges
• Thus, all edges are not the same, and different edges between the
nodes model different types of relationships
• Multigraphs may also contain loops depending on the application
• Many “real world” networks are multigraph networks in essence, though
typically modeled as regular graphs
• e.g. Four types of relationships between a,b & c
• e.g. Loop from a to a
MULTIGRAPHS
a
b c
(Cioffi-Revilla 2014.)
• “In graph theory, a path in a graph is a finite or infinite sequence of
edges which connect a sequence of vertices which, by most definitions,
are all distinct from one another. In a directed graph, a directed path is
again a sequence of edges (or arcs) which connect a sequence of
vertices, but with the added restriction that the edges all be directed in
the same direction.” (Wikipedia 2015)
• Many different types of specially named paths:
• Eulerian path (crosses each edge exactly once, as in Königsberg)
• Hamiltonian path (visits each node exactly once)
PATHS
• Social networks change over time
• A dynamic network N(t) is a social network whose state changes as a
function of time t.
• Dynamic networks may exhibit different kinds of behavior:
• Evolution
• Growth
• Transformation
• Decay
• Termination
• E.g. a family as a network
DYNAMIC NETWORKS
(Cioffi-Revilla 2014.)
• Many specific graph classes have a defined name
• Typically combines a set of features (directed, undirected, weighted) and
a certain structure
• For example
• Tree graph / Forest graph
• Complete graph
• Path graph
• Cycle graph
• Random graph
• Scale-free graph
• Many many others…
SPECIFIC CLASSES OF
GRAPHS
• A tree is an undirected graph in which any two vertices are connected by
exactly one path. In other words, any connected graph without simple
cycles is a tree. (Wikipedia 2015, Tree(graph theory).)
TREE GRAPH
a
b
c
d
e
f
• A forest is an undirected graph, all of whose connected components are
trees; in other words, the graph consists of a disjoint union of trees.
Equivalently, a forest is an undirected cycle-free graph. As special cases,
an empty graph, a single tree, and the discrete graph on a set of vertices
(that is, the graph with these vertices that has no edges), all are
examples of forests. (Wikipedia 2015, Tree(graph theory).)
FORESTGRAPH
• In a complete graph, each pair of vertices is joined by an edge; that is,
the graph contains all possible edges.
COMPLETE GRAPH
a
b
c
d
(Wikipedia 2015, Complete_graph.)
• A path graph or linear graph is a particularly simple example of a tree,
namely a tree with two or more vertices with no branches.
PATH GRAPH
a b c d
(Wikipedia 2015, Path (graph theory.)
• In graph theory, a cycle graph or circular graph is a graph that consists of
a single cycle, or in other words, some number of vertices connected in a
closed chain.
CYCLE GRAPH
a
b
c
d
(Wikipedia 2015, Cycle graph.)
• A graph where the structure of the graphs and in particular the links
between the nodes of the graph is determined by some probability
distribution or some stochastic/random process.
• Can model, for example, how people get to know new people (by
chance)
RANDOM GRAPH
(Wikipedia 2015, Random graph.)
• A scale-free network is a network whose degree distribution follows a
power law, at least asymptotically. That is, the fraction P(k) of nodes in
the network having k connections to other nodes goes for large values
of k as
• P(k) ~ k-γ where γ 2 < γ < 3
• Contains hub-nodes that are highly more connected than an average
node
• Examples where scale free networks can be applied
• Social networks
• Internet and WWW
• Airline networks
SCALE-FREE NETWORK
(Wikipedia 2015, Scale-free network.)
1. Sampling units: which are the nodes/actors of your research
2. Relational form and content: which types of interactions and which
attributes of interaction is researched/modeled
3. Levels of analysis: at which level of the network the research is
focused on
RESEARCH DESIGN
ELEMENTS
(Knoke & Yang 2008.)
• Nodal level = focuses on nodal level attributes and phenomena
• Dyadic level = focuses on the pairs of nodes
• Triadic level = focuses on triplets of nodes
• N-adic level = focuses on sub-graphs of N nodes
• Network level = focuses on the whole graph and network level
phenomena
• Typically a cross-level analysis, combining all of these levels
LEVELOF SOCIAL
NETWORKANALYSIS
(Knoke & Yang 2008.)
MATRIX
REPRESENTATION
OFGRAPHS
• In addition to visual notation, graphs can be represented as matrices,
which are more handy for calculus
• A matrix is a rectangular array formed of rows and columns
• The items that the matrix contains are called elements and they can
contain numbers, symbols or expressions
• A matrix is defined by its size: i.e. 3x2 matrix has 3 rows and 2 columns
• An excel spread sheet is a good example of an matrix with its rows and
columns
GRAPHASAMATRIX
MATRIX NOTATION
(Wikipedia 2015, Matrix.)
2X3 MATRIX
(Wikipedia 2015, Matrix.)
4X3 MATRIX IN EXCEL
• Matrix can be used to represent all the connections (edges) in the social
network
• Thus, it is a node to node mapping of the whole graph
• Typically a connection is denoted by 1 and no connection is denoted by
0
• When social networks are mapped as adjacency matrix it can also be
called as sociomatrix
• Adjacency matrix is always a square matrix (n x n), because it has all the
nodes of the graph mapped identically to its rows and columns
• Typical way of storing, exporting and importing social network graphs (for
example in .csv files)
ADJACENCYMATRIX &
SOCIOMATRIX
(Prell 2012.)
ADJACENCYMATRIX
REPRESENTATION
Anna
Jack
Jane
Ellen
Anna Ellen Jack Jane
Anna 0 0 1 1
Ellen 0 0 0 1
Jack 1 0 0 1
Jane 1 1 1 0
• Here is an adjacency matrix representing the social network of an
organization of eight people. Draw the graph representation of the
network, based on the adjacency matrix.
ASSIGNMENT
Anna Ellen Jack Jane Harry Philip Rosa William
Anna 0 1 1 1 0 1 0 0
Ellen 1 0 1 0 0 0 0 0
Jack 1 1 0 0 0 1 0 1
Jane 1 0 0 0 1 0 1 0
Harry 0 0 0 1 0 1 1 1
Philip 1 0 1 0 1 0 0 1
Rosa 0 0 0 1 1 0 0 0
William 0 0 1 0 1 1 0 0
• You can also represent more information in adjacency matrix than just
binary connections
• For example weights of the connections could be represented directly in
the matrix
• You could also represent different kinds of connections with different
numbers, or just different amounts of connections between the nodes
WEIGHTEDADJACENCY
MATRICES
KEYMEASURES
FORGRAPHS
• There are many quantitative measures of graphs which tell something
about the structure of the graph
• Measures can be divided to micro and macro level
1. Node level (micro)
2. Network level (macro)
QUANTITATIVE MEASURES
OF GRAPHS
(Cioffi-Revilla 2014.)
• Degree of the node = How many connections does a node have
• Distance between two nodes = the minimal number of connecting edges
between two nodes
• Eccentricity = the maximum distance between a node an any other
node (how far a node is from the farthest away node)
• Eigenvector centrality = Eigenvector centrality is a measure of the
influence of a node in a network. (’~how many connections &
connections to highly connected nodes)
• Betweenness centrality = number of times a node is on the shortest
path between two other nodes.
• And many others…
NODE LEVELMEASURES
(Cioffi-Revilla 2014.)
• Size = number of nodes in graph
• Length = number of edges (connections) in graph
• Density = Proportion of connections in relation to all possible
connections
• Diameter = Maximum eccentricity (maximum distance between two
nodes of the graph)
• Radius = Minimum eccentricity (minimum distance between two nodes
of the graph)
• Average degree = Represents the general connectedness of the graph
• Degree skewnes = How the node degrees are distributed (i.e. is the
distribution skewed, does it follow a power law etc)
• Average eccentricity = Represents the average width of the graph
• And many others…
NETWORK LEVEL
MEASURES
(Cioffi-Revilla 2014.)
SOCIALNETWORK
ANALYSISSOFTWARE
• Originally social network analysis used no computers (as there were
none in 1930s)
• First computer based SNA applications from 1960s onwards
• Nowadays there are many ready applications that can be used in social
network analysis: UCINET, Pajek, AutoMap, ORA, NodeXL…
• Many programming languages have also their own graph and network
analysis libraries
• R: igraph, network, sna, Rsiena, statnet
• http://badhessian.org/2012/09/seven-reasons-to-use-r-for-social-
network-analysis-and-three-reasons-against/
• Python: NetworkX,sanp.py, libsna,
COMPUTATIONALSOCIAL
NETWORKANALYSIS
• Social Network analysis software typically contains features such as
• Representation (import/export) of the social network as adjacency
matrix
• Graphical representation of the matrix
• Automatic key measurement calculus
• Automatic graph functions/transformations
TYPICALFEATURES
• Each software tool have their own strengths and weaknesses
• There are available comparisons for SNA tools to help your selection (if
the tool is not pre-specified):
• E.g.
• List of available SNA software in Wikipedia:
http://en.wikipedia.org/wiki/Social_network_analysis_software<
• A comparative study of social network analysis tools
http://wic.litislab.fr/2010/slides/Combe_WIVE10_slides.pdf
• SNA software review: http://www.activatenetworks.net/social-network-
analysis-sna-software-review/
COMPARISON OF DIFFERENT
SNASOFTWARE
SOME
SOCIALNETWORK
ANALYSISEXAMPLES
• There are many different research applications for social network
analysis in many different fields of social sciences (economics,
sociology, anthropology, psychology…)
• Gioffi-Revilla (2014) highlights
• Human cognition and belief systems
• Decision making models
• Models of organisation
• Supply chain and process models
• International relations (diplomatic networks, global organisations)
• Global social structures: i.e. small world problem
• There are many othrer areas of research applications
RESEARCHAPPLICATIONS
• Tantipathananandh, C., Berger-Wolf, T., & Kempe, D. (2007). A
framework for community identification in dynamic social
networks. In Proceedings of the 13th ACM SIGKDD international
conference on Knowledge discovery and data mining (pp. 717-726).
ACM.
IDENTIFYING
COMMUNITIES
• Fowler, J. H., & Christakis, N. A. (2008). Dynamic spread of happiness
in a large social network: longitudinal analysis over 20 years in the
Framingham Heart Study. Bmj, 337, a2338.
HOW DOES HAPPINESS
SPREAD?
• Kempe, D., Kleinberg, J., & Tardos, É. (2003, August). Maximizing the
spread of influence through a social network. In Proceedings of the
ninth ACM SIGKDD international conference on Knowledge discovery
and data mining (pp. 137-146). ACM.
HOWTO INFLUENCEA
SOCIALNETWORK?
• Read the article: “Network Analysis in the Social Sciences”
Borgatti, S. P.; Mehra, A.; Brass, D. J.; Labianca, G. (2009). Network
Analysis in the Social Sciences. Science 13 February 2009: 323 (5916),
892-895.
• What research applications are mentioned in the article?
• What areas of social network theory are highlighted?
• What methods are there for uncovering/modeling a given social
network?
LECTUREASSIGNMENT
• Borgatti, S. P.; Mehra, A.; Brass, D. J.; Labianca, G. (2009). Network Analysis in the
Social Sciences. Science 13 February 2009: 323 (5916), 892-895.
• de Sola Pool, I., & Kochen, M. (1979). Contacts and influence. Social networks,
1(1), 5-51.
• Tantipathananandh, C., Berger-Wolf, T., & Kempe, D. (2007). A framework for
community identification in dynamic social networks. In Proceedings of the 13th
ACM SIGKDD international conference on Knowledge discovery and data mining (pp.
717-726). ACM.
• Kossinets, G., & Watts, D. J. (2006). Empirical analysis of an evolving social
network. Science, 311(5757), 88-90.
• Fowler, J. H., & Christakis, N. A. (2008). Dynamic spread of happiness in a large
social network: longitudinal analysis over 20 years in the Framingham Heart
Study. Bmj, 337, a2338.
• Tichy, N. M., Tushman, M. L., & Fombrun, C. (1979). Social network analysis for
organizations. Academy of management review, 4(4), 507-519.
• Kempe, D., Kleinberg, J., & Tardos, É. (2003, August). Maximizing the spread of
influence through a social network. In Proceedings of the ninth ACM SIGKDD
international conference on Knowledge discovery and data mining (pp. 137-146).
ACM.
LECTURE 4 READING
• Cioffi-Revilla, C. 2014. Introduction to Computational Social Science.
Springer-Verlag, London
• Knoke, D.; Yang, S. 2008. Social Network Analysis. Sage Publications,
London.
• Prell, C. 2012. Social Network Analysis. Sage Publications, London.
REFERENCES
Thank You!
Questions and comments?
twitter: @laurieloranta

Weitere ähnliche Inhalte

Was ist angesagt?

NE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSISNE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSISrathnaarul
 
How to conduct a social network analysis: A tool for empowering teams and wor...
How to conduct a social network analysis: A tool for empowering teams and wor...How to conduct a social network analysis: A tool for empowering teams and wor...
How to conduct a social network analysis: A tool for empowering teams and wor...Jeromy Anglim
 
Unit 1 - SNA QUESTION BANK
Unit 1 - SNA QUESTION BANKUnit 1 - SNA QUESTION BANK
Unit 1 - SNA QUESTION BANKUsha Rani M
 
Social Network Analysis
Social Network AnalysisSocial Network Analysis
Social Network AnalysisFred Stutzman
 
Social media analytics powered by data science
Social media analytics powered by data scienceSocial media analytics powered by data science
Social media analytics powered by data scienceNavin Manaswi
 
CS6010 Social Network Analysis Unit III
CS6010 Social Network Analysis   Unit IIICS6010 Social Network Analysis   Unit III
CS6010 Social Network Analysis Unit IIIpkaviya
 
Homophily and influence in social networks
Homophily and influence in social networksHomophily and influence in social networks
Homophily and influence in social networksNicola Barbieri
 
Social Network Analysis (SNA) 2018
Social Network Analysis  (SNA) 2018Social Network Analysis  (SNA) 2018
Social Network Analysis (SNA) 2018Arsalan Khan
 
Data mining-primitives-languages-and-system-architectures2641
Data mining-primitives-languages-and-system-architectures2641Data mining-primitives-languages-and-system-architectures2641
Data mining-primitives-languages-and-system-architectures2641Aiswaryadevi Jaganmohan
 
Social Network Analysis Introduction including Data Structure Graph overview.
Social Network Analysis Introduction including Data Structure Graph overview. Social Network Analysis Introduction including Data Structure Graph overview.
Social Network Analysis Introduction including Data Structure Graph overview. Doug Needham
 
Complex Network Analysis
Complex Network Analysis Complex Network Analysis
Complex Network Analysis Annu Sharma
 
Social Network Visualization 101
Social Network Visualization 101Social Network Visualization 101
Social Network Visualization 101librarianrafia
 
Information retrival system and PageRank algorithm
Information retrival system and PageRank algorithmInformation retrival system and PageRank algorithm
Information retrival system and PageRank algorithmRupali Bhatnagar
 
Pagerank Algorithm Explained
Pagerank Algorithm ExplainedPagerank Algorithm Explained
Pagerank Algorithm Explainedjdhaar
 
Data mining based social network
Data mining based social networkData mining based social network
Data mining based social networkFiras Husseini
 
Social network analysis
Social network analysisSocial network analysis
Social network analysisCaleb Jones
 
Overview of computing paradigm
Overview of computing paradigmOverview of computing paradigm
Overview of computing paradigmRipal Ranpara
 
multi dimensional data model
multi dimensional data modelmulti dimensional data model
multi dimensional data modelmoni sindhu
 

Was ist angesagt? (20)

NE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSISNE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSIS
 
How to conduct a social network analysis: A tool for empowering teams and wor...
How to conduct a social network analysis: A tool for empowering teams and wor...How to conduct a social network analysis: A tool for empowering teams and wor...
How to conduct a social network analysis: A tool for empowering teams and wor...
 
Unit 1 - SNA QUESTION BANK
Unit 1 - SNA QUESTION BANKUnit 1 - SNA QUESTION BANK
Unit 1 - SNA QUESTION BANK
 
Social Network Analysis
Social Network AnalysisSocial Network Analysis
Social Network Analysis
 
Social media analytics powered by data science
Social media analytics powered by data scienceSocial media analytics powered by data science
Social media analytics powered by data science
 
CS6010 Social Network Analysis Unit III
CS6010 Social Network Analysis   Unit IIICS6010 Social Network Analysis   Unit III
CS6010 Social Network Analysis Unit III
 
Homophily and influence in social networks
Homophily and influence in social networksHomophily and influence in social networks
Homophily and influence in social networks
 
Social Network Analysis (SNA) 2018
Social Network Analysis  (SNA) 2018Social Network Analysis  (SNA) 2018
Social Network Analysis (SNA) 2018
 
Analytical tools
Analytical toolsAnalytical tools
Analytical tools
 
Data mining-primitives-languages-and-system-architectures2641
Data mining-primitives-languages-and-system-architectures2641Data mining-primitives-languages-and-system-architectures2641
Data mining-primitives-languages-and-system-architectures2641
 
Social Network Analysis Introduction including Data Structure Graph overview.
Social Network Analysis Introduction including Data Structure Graph overview. Social Network Analysis Introduction including Data Structure Graph overview.
Social Network Analysis Introduction including Data Structure Graph overview.
 
Complex Network Analysis
Complex Network Analysis Complex Network Analysis
Complex Network Analysis
 
Social Network Visualization 101
Social Network Visualization 101Social Network Visualization 101
Social Network Visualization 101
 
Dynamic Itemset Counting
Dynamic Itemset CountingDynamic Itemset Counting
Dynamic Itemset Counting
 
Information retrival system and PageRank algorithm
Information retrival system and PageRank algorithmInformation retrival system and PageRank algorithm
Information retrival system and PageRank algorithm
 
Pagerank Algorithm Explained
Pagerank Algorithm ExplainedPagerank Algorithm Explained
Pagerank Algorithm Explained
 
Data mining based social network
Data mining based social networkData mining based social network
Data mining based social network
 
Social network analysis
Social network analysisSocial network analysis
Social network analysis
 
Overview of computing paradigm
Overview of computing paradigmOverview of computing paradigm
Overview of computing paradigm
 
multi dimensional data model
multi dimensional data modelmulti dimensional data model
multi dimensional data model
 

Andere mochten auch

Social network analysis course 2010 - 2011
Social network analysis course 2010 - 2011Social network analysis course 2010 - 2011
Social network analysis course 2010 - 2011guillaume ereteo
 
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...Lauri Eloranta
 
The Basics of Social Network Analysis
The Basics of Social Network AnalysisThe Basics of Social Network Analysis
The Basics of Social Network AnalysisRory Sie
 
Social Network Analysis & an Introduction to Tools
Social Network Analysis & an Introduction to ToolsSocial Network Analysis & an Introduction to Tools
Social Network Analysis & an Introduction to ToolsPatti Anklam
 
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...Lauri Eloranta
 
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...Lauri Eloranta
 
Simulation in Social Sciences - Lecture 6 in Introduction to Computational S...
Simulation in Social Sciences -  Lecture 6 in Introduction to Computational S...Simulation in Social Sciences -  Lecture 6 in Introduction to Computational S...
Simulation in Social Sciences - Lecture 6 in Introduction to Computational S...Lauri Eloranta
 
A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...
A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...
A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...Lauri Eloranta
 
Social Networks and Social Capital
Social Networks and Social CapitalSocial Networks and Social Capital
Social Networks and Social CapitalGiorgos Cheliotis
 
Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...
Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...
Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...Lauri Eloranta
 
Introduction to Computational Social Science - Lecture 1
Introduction to Computational Social Science - Lecture 1Introduction to Computational Social Science - Lecture 1
Introduction to Computational Social Science - Lecture 1Lauri Eloranta
 
Social Network Analysis: applications for education research
Social Network Analysis: applications for education researchSocial Network Analysis: applications for education research
Social Network Analysis: applications for education researchChristian Bokhove
 
Social network analysis intro part I
Social network analysis intro part ISocial network analysis intro part I
Social network analysis intro part ITHomas Plotkowiak
 
Social Network Analysis in Two Parts
Social Network Analysis in Two PartsSocial Network Analysis in Two Parts
Social Network Analysis in Two PartsPatti Anklam
 
Complex and Social Network Analysis in Python
Complex and Social Network Analysis in PythonComplex and Social Network Analysis in Python
Complex and Social Network Analysis in Pythonrik0
 
Introduction to Social Network Analysis
Introduction to Social Network AnalysisIntroduction to Social Network Analysis
Introduction to Social Network AnalysisPatti Anklam
 
Social Network Theory & Analysis
Social Network Theory & Analysis Social Network Theory & Analysis
Social Network Theory & Analysis Susan Chesley Fant
 
Social network analysis & Big Data - Telecommunications and more
Social network analysis & Big Data - Telecommunications and moreSocial network analysis & Big Data - Telecommunications and more
Social network analysis & Big Data - Telecommunications and moreWael Elrifai
 

Andere mochten auch (20)

Social Network Analysis
Social Network AnalysisSocial Network Analysis
Social Network Analysis
 
Social network analysis course 2010 - 2011
Social network analysis course 2010 - 2011Social network analysis course 2010 - 2011
Social network analysis course 2010 - 2011
 
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
 
The Basics of Social Network Analysis
The Basics of Social Network AnalysisThe Basics of Social Network Analysis
The Basics of Social Network Analysis
 
Social Network Analysis & an Introduction to Tools
Social Network Analysis & an Introduction to ToolsSocial Network Analysis & an Introduction to Tools
Social Network Analysis & an Introduction to Tools
 
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
 
I Social Network
I Social NetworkI Social Network
I Social Network
 
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
 
Simulation in Social Sciences - Lecture 6 in Introduction to Computational S...
Simulation in Social Sciences -  Lecture 6 in Introduction to Computational S...Simulation in Social Sciences -  Lecture 6 in Introduction to Computational S...
Simulation in Social Sciences - Lecture 6 in Introduction to Computational S...
 
A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...
A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...
A Summary of Computational Social Science - Lecture 8 in Introduction to Comp...
 
Social Networks and Social Capital
Social Networks and Social CapitalSocial Networks and Social Capital
Social Networks and Social Capital
 
Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...
Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...
Complex Social Systems - Lecture 5 in Introduction to Computational Social Sc...
 
Introduction to Computational Social Science - Lecture 1
Introduction to Computational Social Science - Lecture 1Introduction to Computational Social Science - Lecture 1
Introduction to Computational Social Science - Lecture 1
 
Social Network Analysis: applications for education research
Social Network Analysis: applications for education researchSocial Network Analysis: applications for education research
Social Network Analysis: applications for education research
 
Social network analysis intro part I
Social network analysis intro part ISocial network analysis intro part I
Social network analysis intro part I
 
Social Network Analysis in Two Parts
Social Network Analysis in Two PartsSocial Network Analysis in Two Parts
Social Network Analysis in Two Parts
 
Complex and Social Network Analysis in Python
Complex and Social Network Analysis in PythonComplex and Social Network Analysis in Python
Complex and Social Network Analysis in Python
 
Introduction to Social Network Analysis
Introduction to Social Network AnalysisIntroduction to Social Network Analysis
Introduction to Social Network Analysis
 
Social Network Theory & Analysis
Social Network Theory & Analysis Social Network Theory & Analysis
Social Network Theory & Analysis
 
Social network analysis & Big Data - Telecommunications and more
Social network analysis & Big Data - Telecommunications and moreSocial network analysis & Big Data - Telecommunications and more
Social network analysis & Big Data - Telecommunications and more
 

Ähnlich wie Social Network Analysis - Lecture 4 in Introduction to Computational Social Science

Minicourse on Network Science
Minicourse on Network ScienceMinicourse on Network Science
Minicourse on Network SciencePavel Loskot
 
Complex Networks Analysis @ Universita Roma Tre
Complex Networks Analysis @ Universita Roma TreComplex Networks Analysis @ Universita Roma Tre
Complex Networks Analysis @ Universita Roma TreMatteo Moci
 
Predicting Communication Intention in Social Media
Predicting Communication Intention in Social MediaPredicting Communication Intention in Social Media
Predicting Communication Intention in Social MediaCharalampos Chelmis
 
Random graph models
Random graph modelsRandom graph models
Random graph modelsnetworksuw
 
lec3_socialnetwork_part1.pptx
lec3_socialnetwork_part1.pptxlec3_socialnetwork_part1.pptx
lec3_socialnetwork_part1.pptxdatapro2
 
Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...
Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...
Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...Denis Parra Santander
 
Map history-networks-shorter
Map history-networks-shorterMap history-networks-shorter
Map history-networks-shorterMason Porter
 
Topological Data Analysis of Complex Spatial Systems
Topological Data Analysis of Complex Spatial SystemsTopological Data Analysis of Complex Spatial Systems
Topological Data Analysis of Complex Spatial SystemsMason Porter
 
Social network analysis
Social network analysisSocial network analysis
Social network analysisFEG
 
Graph-terminology.pptx
Graph-terminology.pptxGraph-terminology.pptx
Graph-terminology.pptxsharlinE4
 
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...thanhdowork
 
MDST 3705 2012-03-05 Databases to Visualization
MDST 3705 2012-03-05 Databases to VisualizationMDST 3705 2012-03-05 Databases to Visualization
MDST 3705 2012-03-05 Databases to VisualizationRafael Alvarado
 
Link network search analysis of literary books the achebe's
Link network search analysis of literary books the achebe'sLink network search analysis of literary books the achebe's
Link network search analysis of literary books the achebe'sAlexander Decker
 
2016 Cytoscape 3.3 Tutorial
2016 Cytoscape 3.3 Tutorial2016 Cytoscape 3.3 Tutorial
2016 Cytoscape 3.3 TutorialAlexander Pico
 
Networks, Deep Learning (and COVID-19)
Networks, Deep Learning (and COVID-19)Networks, Deep Learning (and COVID-19)
Networks, Deep Learning (and COVID-19)tm1966
 
Social Networks and Computer Science
Social Networks and Computer ScienceSocial Networks and Computer Science
Social Networks and Computer Sciencedragonmeteor
 

Ähnlich wie Social Network Analysis - Lecture 4 in Introduction to Computational Social Science (20)

Minicourse on Network Science
Minicourse on Network ScienceMinicourse on Network Science
Minicourse on Network Science
 
Complex Networks Analysis @ Universita Roma Tre
Complex Networks Analysis @ Universita Roma TreComplex Networks Analysis @ Universita Roma Tre
Complex Networks Analysis @ Universita Roma Tre
 
Predicting Communication Intention in Social Media
Predicting Communication Intention in Social MediaPredicting Communication Intention in Social Media
Predicting Communication Intention in Social Media
 
Random graph models
Random graph modelsRandom graph models
Random graph models
 
Graph Evolution Models
Graph Evolution ModelsGraph Evolution Models
Graph Evolution Models
 
social.pptx
social.pptxsocial.pptx
social.pptx
 
Chapter 3.pdf
Chapter 3.pdfChapter 3.pdf
Chapter 3.pdf
 
lec3_socialnetwork_part1.pptx
lec3_socialnetwork_part1.pptxlec3_socialnetwork_part1.pptx
lec3_socialnetwork_part1.pptx
 
Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...
Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...
Network Visualization guest lecture at #DataVizQMSS at @Columbia / #SNA at PU...
 
Book chapter 2
Book chapter 2Book chapter 2
Book chapter 2
 
Map history-networks-shorter
Map history-networks-shorterMap history-networks-shorter
Map history-networks-shorter
 
Topological Data Analysis of Complex Spatial Systems
Topological Data Analysis of Complex Spatial SystemsTopological Data Analysis of Complex Spatial Systems
Topological Data Analysis of Complex Spatial Systems
 
Social network analysis
Social network analysisSocial network analysis
Social network analysis
 
Graph-terminology.pptx
Graph-terminology.pptxGraph-terminology.pptx
Graph-terminology.pptx
 
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
 
MDST 3705 2012-03-05 Databases to Visualization
MDST 3705 2012-03-05 Databases to VisualizationMDST 3705 2012-03-05 Databases to Visualization
MDST 3705 2012-03-05 Databases to Visualization
 
Link network search analysis of literary books the achebe's
Link network search analysis of literary books the achebe'sLink network search analysis of literary books the achebe's
Link network search analysis of literary books the achebe's
 
2016 Cytoscape 3.3 Tutorial
2016 Cytoscape 3.3 Tutorial2016 Cytoscape 3.3 Tutorial
2016 Cytoscape 3.3 Tutorial
 
Networks, Deep Learning (and COVID-19)
Networks, Deep Learning (and COVID-19)Networks, Deep Learning (and COVID-19)
Networks, Deep Learning (and COVID-19)
 
Social Networks and Computer Science
Social Networks and Computer ScienceSocial Networks and Computer Science
Social Networks and Computer Science
 

Kürzlich hochgeladen

Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsVICTOR MAESTRE RAMIREZ
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queensdataanalyticsqueen03
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Colleen Farrelly
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
MK KOMUNIKASI DATA (TI)komdat komdat.docx
MK KOMUNIKASI DATA (TI)komdat komdat.docxMK KOMUNIKASI DATA (TI)komdat komdat.docx
MK KOMUNIKASI DATA (TI)komdat komdat.docxUnduhUnggah1
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Cantervoginip
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptxthyngster
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 

Kürzlich hochgeladen (20)

Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business Professionals
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queens
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
MK KOMUNIKASI DATA (TI)komdat komdat.docx
MK KOMUNIKASI DATA (TI)komdat komdat.docxMK KOMUNIKASI DATA (TI)komdat komdat.docx
MK KOMUNIKASI DATA (TI)komdat komdat.docx
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Canter
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 

Social Network Analysis - Lecture 4 in Introduction to Computational Social Science

  • 1. SOCIALNETWORK ANALYSIS LECTURE 4, 14.9.2015 INTRODUCTION TO COMPUTATIONAL SOCIAL SCIENCE (CSS01) LAURI ELORANTA
  • 2. • LECTURE 1: Introduction to Computational Social Science [DONE] • Tuesday 01.09. 16:00 – 18:00, U35, Seminar room114 • LECTURE 2: Basics of Computation and Modeling [DONE] • Wednesday 02.09. 16:00 – 18:00, U35, Seminar room 113 • LECTURE 3: Big Data and Information Extraction [DONE] • Monday 07.09. 16:00 – 18:00, U35, Seminar room 114 • LECTURE 4: Network Analysis [TODAY] • Monday 14.09. 16:00 – 18:00, U35, Seminar room 114 • LECTURE 5: Complex Systems • Tuesday 15.09. 16:00 – 18:00, U35, Seminar room 114 • LECTURE 6: Simulation in Social Science • Wednesday 16.09. 16:00 – 18:00, U35, Seminar room 113 • LECTURE 7: Ethical and Legal issues in CSS • Monday 21.09. 16:00 – 18:00, U35, Seminar room 114 • LECTURE 8: Summary • Tuesday 22.09. 17:00 – 19:00, U35, Seminar room 114 LECTURESSCHEDULE
  • 3. • PART 1: SOCIAL NETWORK ANALYSIS DEFINED • PART 2: NETWORK & GRAPH THEORY BASICS • PART 3: MATRIX REPRESENTATION • PART 4: KEY MEASURES • PART 5: SOCIAL NETWORK ANALYSIS SOFTWARE • PART 6: SOCIAL NETWORK ANALYSIS EXAMPLES LECTURE 4OVERVIEW
  • 5. • “Social network analysis (SNA) is a strategy for investigating social structures through the use of network and graph theories. It characterizes networked structures in terms of nodes (individual actors, people, or things within the network) and the ties or edges (relationships or interactions) that connect them. Examples of social structures commonly visualized through social network analysis include social media networks, friendship and acquaintance networks, kinship, disease transmission,and sexual relationships.” (Wikipedia 2015). • “Social Network analysis is inherently an interdisciplinary endeavor. The concept of social network analysis developed out of propitious meeting of social theory and application with formal mathematical, statistical, and computing methodology.” Stanley Wasserman and Katherine Fuast 1994 • “Social network analysis is neither a theory nor methodology. Rather, it is a perspective or paradigm. It takes as its starting point the premise that social life is created primarily and most importantly by relations and the patterns they form.” Alexandra Marin and Barry Wellman 2011 DEFINITIONS SOCIALNETWORKANALYSIS=SNA (Cioffi-Revilla 2014.)
  • 6. • Characteristics of social networks and social networks as analogy of some parts of the society are quite common in all major social science fields (economics, sociology, anthropology, political science, psychology). • Social Network Analysis is a paradigmatic viewpoint of society: it contains the belief, that social universe is formed of and can be modeled with networks. • Not just a collection of methods, but also a strong theoretical perspective: rooted in network and graph theory (in mathematics and in computer science) and in discrete mathematics. SOCIALNETWORKASA VIEWPOINT (Cioffi-Revilla 2014.)
  • 7. • Euler and Könisberg bridge –problem already in 1736. Provided the first principles of graph theory. • Most active developments in early and mid 1900s. • Sociogram – a mathematical model of social group in the 1930s (Jakob.L. Moreno) • Social structure – based on network model in the 1940s (Alfred Radcliffe-Brown) • Matrix calculus introduced to social networks in 1940s and 1950s • Small world –phenomena presented and demonstrated in the 1950s and 1960s • Dynamic networks – 1970s • First SNA software – 1980s LONGTRADITIONS IN NETWORKANALYSIS (Cioffi-Revilla 2014.)
  • 8. 7 BRIDGES OF KÖNIGSBERG The city of Königsberg in Prussia was set on both sides of the Pregel River, and included two large islands which were connected to each other and the mainland by seven bridges. The problem was to find a walk through the city that would cross each bridge once and only once. (Wikipedia 2015.)
  • 10. • Nodes/Vertices = the nodes of the network, can also be viewed as entities, actors, values, sentiments, ideas, locations, attributes etc. depending on the network at hand • Edges between the nodes = can also be viewed as connections, links, associations, relations, affiliations, interactions etc. Depending on the network at hand • Graph is a set (aggregation) of nodes and edges forming a social networks. Thas graph is a network. • Formally, a a graph G is an ordered pair G = (V, E) comprising a set V of vertices or nodes together with a set E of edges or lines, which are 2- element subsets of V (i.e. e={u,v}) COMPONENTS OFA NETWORK (Cioffi-Revilla 2014.)
  • 11. VERTICES & EDGES a b c d • Graph G =(V,E) • V = {a, b, c, d} • E = {{a,b},{a,c},{b,c},{c,d}}
  • 12.
  • 13. HELSINKI METRO MAPASA NETWORK • Each station is a node • Each connection is an edge
  • 14. • Directed edges, , from a to b, but not from b to a • Undirected edges, meaning, that the edge connects both ways • Graphs (networks) containing directed edges is called directed graph • Graphs (networks) containing undirected edges is called undirected graph • e.g. a graph describing a process is typically a directed graph • e.g. a graph modeling metro map is undirected graph DIFFERENTTYPES OF NETWORK EDGES (Cioffi-Revilla 2014.)
  • 17. • Edges of a graph can have weights • Typically these model some attribute of intensity, such as probability, distance, time, etc. • E.g. distance between cities • E.g. time between metro stops • A graph with edge weights is called a weighted graph WEIGHTED GRAPHS tampere turku helsinki 178 km 166 km 162 km
  • 18. • In a signed graph the edges of the graph contain either plus (+) or minus (-) sign (or in some applications also 0). • e.g. signed graphs can be used in modeling political allies/adversaries • e.g. signed graphs can be used in modeling belief systems SIGNED GRAPHS party1 party2 party3 + + -
  • 19. • In multigraphs two nodes maybe be connected with multiple and usually different types of edges • Thus, all edges are not the same, and different edges between the nodes model different types of relationships • Multigraphs may also contain loops depending on the application • Many “real world” networks are multigraph networks in essence, though typically modeled as regular graphs • e.g. Four types of relationships between a,b & c • e.g. Loop from a to a MULTIGRAPHS a b c (Cioffi-Revilla 2014.)
  • 20. • “In graph theory, a path in a graph is a finite or infinite sequence of edges which connect a sequence of vertices which, by most definitions, are all distinct from one another. In a directed graph, a directed path is again a sequence of edges (or arcs) which connect a sequence of vertices, but with the added restriction that the edges all be directed in the same direction.” (Wikipedia 2015) • Many different types of specially named paths: • Eulerian path (crosses each edge exactly once, as in Königsberg) • Hamiltonian path (visits each node exactly once) PATHS
  • 21. • Social networks change over time • A dynamic network N(t) is a social network whose state changes as a function of time t. • Dynamic networks may exhibit different kinds of behavior: • Evolution • Growth • Transformation • Decay • Termination • E.g. a family as a network DYNAMIC NETWORKS (Cioffi-Revilla 2014.)
  • 22. • Many specific graph classes have a defined name • Typically combines a set of features (directed, undirected, weighted) and a certain structure • For example • Tree graph / Forest graph • Complete graph • Path graph • Cycle graph • Random graph • Scale-free graph • Many many others… SPECIFIC CLASSES OF GRAPHS
  • 23. • A tree is an undirected graph in which any two vertices are connected by exactly one path. In other words, any connected graph without simple cycles is a tree. (Wikipedia 2015, Tree(graph theory).) TREE GRAPH a b c d e f
  • 24. • A forest is an undirected graph, all of whose connected components are trees; in other words, the graph consists of a disjoint union of trees. Equivalently, a forest is an undirected cycle-free graph. As special cases, an empty graph, a single tree, and the discrete graph on a set of vertices (that is, the graph with these vertices that has no edges), all are examples of forests. (Wikipedia 2015, Tree(graph theory).) FORESTGRAPH
  • 25. • In a complete graph, each pair of vertices is joined by an edge; that is, the graph contains all possible edges. COMPLETE GRAPH a b c d (Wikipedia 2015, Complete_graph.)
  • 26. • A path graph or linear graph is a particularly simple example of a tree, namely a tree with two or more vertices with no branches. PATH GRAPH a b c d (Wikipedia 2015, Path (graph theory.)
  • 27. • In graph theory, a cycle graph or circular graph is a graph that consists of a single cycle, or in other words, some number of vertices connected in a closed chain. CYCLE GRAPH a b c d (Wikipedia 2015, Cycle graph.)
  • 28. • A graph where the structure of the graphs and in particular the links between the nodes of the graph is determined by some probability distribution or some stochastic/random process. • Can model, for example, how people get to know new people (by chance) RANDOM GRAPH (Wikipedia 2015, Random graph.)
  • 29. • A scale-free network is a network whose degree distribution follows a power law, at least asymptotically. That is, the fraction P(k) of nodes in the network having k connections to other nodes goes for large values of k as • P(k) ~ k-γ where γ 2 < γ < 3 • Contains hub-nodes that are highly more connected than an average node • Examples where scale free networks can be applied • Social networks • Internet and WWW • Airline networks SCALE-FREE NETWORK (Wikipedia 2015, Scale-free network.)
  • 30. 1. Sampling units: which are the nodes/actors of your research 2. Relational form and content: which types of interactions and which attributes of interaction is researched/modeled 3. Levels of analysis: at which level of the network the research is focused on RESEARCH DESIGN ELEMENTS (Knoke & Yang 2008.)
  • 31. • Nodal level = focuses on nodal level attributes and phenomena • Dyadic level = focuses on the pairs of nodes • Triadic level = focuses on triplets of nodes • N-adic level = focuses on sub-graphs of N nodes • Network level = focuses on the whole graph and network level phenomena • Typically a cross-level analysis, combining all of these levels LEVELOF SOCIAL NETWORKANALYSIS (Knoke & Yang 2008.)
  • 33. • In addition to visual notation, graphs can be represented as matrices, which are more handy for calculus • A matrix is a rectangular array formed of rows and columns • The items that the matrix contains are called elements and they can contain numbers, symbols or expressions • A matrix is defined by its size: i.e. 3x2 matrix has 3 rows and 2 columns • An excel spread sheet is a good example of an matrix with its rows and columns GRAPHASAMATRIX
  • 36. 4X3 MATRIX IN EXCEL
  • 37. • Matrix can be used to represent all the connections (edges) in the social network • Thus, it is a node to node mapping of the whole graph • Typically a connection is denoted by 1 and no connection is denoted by 0 • When social networks are mapped as adjacency matrix it can also be called as sociomatrix • Adjacency matrix is always a square matrix (n x n), because it has all the nodes of the graph mapped identically to its rows and columns • Typical way of storing, exporting and importing social network graphs (for example in .csv files) ADJACENCYMATRIX & SOCIOMATRIX (Prell 2012.)
  • 38. ADJACENCYMATRIX REPRESENTATION Anna Jack Jane Ellen Anna Ellen Jack Jane Anna 0 0 1 1 Ellen 0 0 0 1 Jack 1 0 0 1 Jane 1 1 1 0
  • 39. • Here is an adjacency matrix representing the social network of an organization of eight people. Draw the graph representation of the network, based on the adjacency matrix. ASSIGNMENT Anna Ellen Jack Jane Harry Philip Rosa William Anna 0 1 1 1 0 1 0 0 Ellen 1 0 1 0 0 0 0 0 Jack 1 1 0 0 0 1 0 1 Jane 1 0 0 0 1 0 1 0 Harry 0 0 0 1 0 1 1 1 Philip 1 0 1 0 1 0 0 1 Rosa 0 0 0 1 1 0 0 0 William 0 0 1 0 1 1 0 0
  • 40. • You can also represent more information in adjacency matrix than just binary connections • For example weights of the connections could be represented directly in the matrix • You could also represent different kinds of connections with different numbers, or just different amounts of connections between the nodes WEIGHTEDADJACENCY MATRICES
  • 42. • There are many quantitative measures of graphs which tell something about the structure of the graph • Measures can be divided to micro and macro level 1. Node level (micro) 2. Network level (macro) QUANTITATIVE MEASURES OF GRAPHS (Cioffi-Revilla 2014.)
  • 43. • Degree of the node = How many connections does a node have • Distance between two nodes = the minimal number of connecting edges between two nodes • Eccentricity = the maximum distance between a node an any other node (how far a node is from the farthest away node) • Eigenvector centrality = Eigenvector centrality is a measure of the influence of a node in a network. (’~how many connections & connections to highly connected nodes) • Betweenness centrality = number of times a node is on the shortest path between two other nodes. • And many others… NODE LEVELMEASURES (Cioffi-Revilla 2014.)
  • 44. • Size = number of nodes in graph • Length = number of edges (connections) in graph • Density = Proportion of connections in relation to all possible connections • Diameter = Maximum eccentricity (maximum distance between two nodes of the graph) • Radius = Minimum eccentricity (minimum distance between two nodes of the graph) • Average degree = Represents the general connectedness of the graph • Degree skewnes = How the node degrees are distributed (i.e. is the distribution skewed, does it follow a power law etc) • Average eccentricity = Represents the average width of the graph • And many others… NETWORK LEVEL MEASURES (Cioffi-Revilla 2014.)
  • 46. • Originally social network analysis used no computers (as there were none in 1930s) • First computer based SNA applications from 1960s onwards • Nowadays there are many ready applications that can be used in social network analysis: UCINET, Pajek, AutoMap, ORA, NodeXL… • Many programming languages have also their own graph and network analysis libraries • R: igraph, network, sna, Rsiena, statnet • http://badhessian.org/2012/09/seven-reasons-to-use-r-for-social- network-analysis-and-three-reasons-against/ • Python: NetworkX,sanp.py, libsna, COMPUTATIONALSOCIAL NETWORKANALYSIS
  • 47. • Social Network analysis software typically contains features such as • Representation (import/export) of the social network as adjacency matrix • Graphical representation of the matrix • Automatic key measurement calculus • Automatic graph functions/transformations TYPICALFEATURES
  • 48. • Each software tool have their own strengths and weaknesses • There are available comparisons for SNA tools to help your selection (if the tool is not pre-specified): • E.g. • List of available SNA software in Wikipedia: http://en.wikipedia.org/wiki/Social_network_analysis_software< • A comparative study of social network analysis tools http://wic.litislab.fr/2010/slides/Combe_WIVE10_slides.pdf • SNA software review: http://www.activatenetworks.net/social-network- analysis-sna-software-review/ COMPARISON OF DIFFERENT SNASOFTWARE
  • 50. • There are many different research applications for social network analysis in many different fields of social sciences (economics, sociology, anthropology, psychology…) • Gioffi-Revilla (2014) highlights • Human cognition and belief systems • Decision making models • Models of organisation • Supply chain and process models • International relations (diplomatic networks, global organisations) • Global social structures: i.e. small world problem • There are many othrer areas of research applications RESEARCHAPPLICATIONS
  • 51. • Tantipathananandh, C., Berger-Wolf, T., & Kempe, D. (2007). A framework for community identification in dynamic social networks. In Proceedings of the 13th ACM SIGKDD international conference on Knowledge discovery and data mining (pp. 717-726). ACM. IDENTIFYING COMMUNITIES
  • 52. • Fowler, J. H., & Christakis, N. A. (2008). Dynamic spread of happiness in a large social network: longitudinal analysis over 20 years in the Framingham Heart Study. Bmj, 337, a2338. HOW DOES HAPPINESS SPREAD?
  • 53. • Kempe, D., Kleinberg, J., & Tardos, É. (2003, August). Maximizing the spread of influence through a social network. In Proceedings of the ninth ACM SIGKDD international conference on Knowledge discovery and data mining (pp. 137-146). ACM. HOWTO INFLUENCEA SOCIALNETWORK?
  • 54. • Read the article: “Network Analysis in the Social Sciences” Borgatti, S. P.; Mehra, A.; Brass, D. J.; Labianca, G. (2009). Network Analysis in the Social Sciences. Science 13 February 2009: 323 (5916), 892-895. • What research applications are mentioned in the article? • What areas of social network theory are highlighted? • What methods are there for uncovering/modeling a given social network? LECTUREASSIGNMENT
  • 55. • Borgatti, S. P.; Mehra, A.; Brass, D. J.; Labianca, G. (2009). Network Analysis in the Social Sciences. Science 13 February 2009: 323 (5916), 892-895. • de Sola Pool, I., & Kochen, M. (1979). Contacts and influence. Social networks, 1(1), 5-51. • Tantipathananandh, C., Berger-Wolf, T., & Kempe, D. (2007). A framework for community identification in dynamic social networks. In Proceedings of the 13th ACM SIGKDD international conference on Knowledge discovery and data mining (pp. 717-726). ACM. • Kossinets, G., & Watts, D. J. (2006). Empirical analysis of an evolving social network. Science, 311(5757), 88-90. • Fowler, J. H., & Christakis, N. A. (2008). Dynamic spread of happiness in a large social network: longitudinal analysis over 20 years in the Framingham Heart Study. Bmj, 337, a2338. • Tichy, N. M., Tushman, M. L., & Fombrun, C. (1979). Social network analysis for organizations. Academy of management review, 4(4), 507-519. • Kempe, D., Kleinberg, J., & Tardos, É. (2003, August). Maximizing the spread of influence through a social network. In Proceedings of the ninth ACM SIGKDD international conference on Knowledge discovery and data mining (pp. 137-146). ACM. LECTURE 4 READING
  • 56. • Cioffi-Revilla, C. 2014. Introduction to Computational Social Science. Springer-Verlag, London • Knoke, D.; Yang, S. 2008. Social Network Analysis. Sage Publications, London. • Prell, C. 2012. Social Network Analysis. Sage Publications, London. REFERENCES
  • 57. Thank You! Questions and comments? twitter: @laurieloranta