SOCIAL NETWORK
ANALYSIS
Caleb Jones
{
“email” : “calebjones@gmail.com”,
“website” : “http://calebjones.info”,
“twitter” : “@JonesWCaleb”
}
Overview
•  Network Analysis – Crash Course
•  Degree
•  Components
•  Modularity
•  Ranking
•  Resiliency
•  Gephi – Intro
•  Loading data (Facebook)
•  Navigation
•  Statistics
•  Exporting
•  Filtering
•  Resiliency
Resources
SNA Coursera Course
(next being taught October 2013)
Linked by
Albert-László Barabási
Network Analysis – Crash Course
•  Degree (n): The number of connections a node has.
•  Node A has in-degree 3 and out-degree 1
•  Node B has degree 4
A
B
Network Analysis – Crash Course
•  Component (n): A a maximally connected subgraph
(undirected).
•  Giant component is largest component
component (giant) component
Graph with nodes { A, B, C, X, Y, Z }
Network Analysis – Crash Course
•  Modularity (n) ~ Division of a graph into communities
(modules/classes/cliques) with dense interconnection with
the network having relatively sparse interconnection
between communities.
Community 1 Community 2
Graph with nodes { A, B, C, X, Y, Z }
Network Analysis – Crash Course
• Ranking: A measure of a node’s
“importance”
• Many different methods for determining
“importance”
• Degree, Centrality, Closeness, Betweenness,
Eigenvector, HITS, PageRank, Erdös Number
• Which one to consider depends on the
question being asked
• Precursor to identifying network resilience,
diffusion, and vulnerability
Network Analysis – Crash Course
• Degree ranking: Quantity over quality
Node Score
A 3
B 3
C 1
D 1
X 1
Y 1
Z 3
Q 1
Network Analysis – Crash Course
• Betweeness Ranking: How frequently a
node appears on shortest paths.
Node Score
A 15
B 11
C 0
D 0
X 0
Y 0
Z 11
Q 0
Network Analysis – Crash Course
• Closeness Ranking: Average number of
hops from a node to rest of network.
Node Score
A 1.571
B 1.857
C 2.714
D 2.714
X 2.714
Y 2.714
Z 1.857
Q 2.429
Note: Smaller is (usually) better
Network Analysis – Crash Course
• Eigenvector Ranking: A node’s “influence”
on the network (accounts for who you know)
Node Score
A 1
B 0.836
C 0.392
D 0.392
X 0.392
Y 0.392
Z 0.836
Q 0.465
Google’s PageRank is a variant of this
Based on eigenvector of adjacency matrix
Network Analysis – Crash Course
• Erdös Ranking: Number of hops to
specific node (degrees of separation).
Node Score
A 0
B 1
C 2
D 2
X 2
Y 2
Z 1
Q 1
Note: Smaller is (usually) better
What if “Erdös” is an influential CEO?
What if “Erdös” has bird flu?
Erdös
Network Analysis – Crash Course
• Erdös Ranking: Number of hops to
specific node (degrees of separation).
Node Score
A 2
B 1
C 2
D 0
X 4
Y 4
Z 3
Q 3
Note: Smaller is (usually) better
What if “Erdös” is an influential CEO?
What if “Erdös” has bird flu?
Erdös
Network Analysis – Crash Course
• Limitations:
• Only considered undirected networks (directed
is more complicated)
• Treated all edges as equal. Many networks
have a weight or cost associated to edges (e.g.
distance)
• Treated all nodes as equal. A node’s importance
may be inherent based on attributes separate
from its position in network (e.g. dating sites)
Network Analysis – Crash Course
• Resiliency (removing nodes/links):
• Target nodes based on their “importance”
• High degree nodes more likely to affect
local communities
• High betweeness/Eigenvector nodes
more likely to fragment communities
Gephi Introduction
•  Platform for visualizing and analyzing networks
•  https://gephi.org/
•  Cross-platform
•  Plugin model
Facebook Dataset
•  Download your data (gml)
•  http://snacourse.com/getnet/
•  Import into Gephi
•  File -> Open -> Select downloaded
.gml file
•  Choose “undirected”
for “Graph Type”
Layout
Layout -> Fruchterman Reingold
Partitioning Communities
1.  Statistic -> Modularity -> Run (use defaults)
2.  Partition -> Nodes (refresh) -> Modularity class -> Apply
Degree Distribution
1.  Statistic -> Average Degree -> Run
2.  Partition -> Nodes (refresh) -> Modularity class -> Apply
Lots of nodes with
few connections
Only a few with a large
number of connections
Power law distribution?
Node Ranking by Degree
1.  Ranking -> Nodes (refresh) -> Degree -> Apply
(try tweaking min/max size and Spline for desired emphasis)
Filtering Isolated Nodes (“noise”)
1.  Statistics -> Connected
Components -> Run
2.  Filters -> Attributes -> Partition
Count -> Component ID
3.  Drag “Component ID” down into
“Queries” section
4.  Click on “Partition Count”, slide the
settings bar, and click “Filter” –
adjust to remove isolated nodes
Can be important step when dealing with very
large data sets. Depending on degree
distribution, filter can be set quite high.
Re-adjust after Filtering
• Need to re-run previous steps to refresh
calculated values now that filtering has been
done.
• Statistics -> Average degree, modularity,
connected components
•  How did these numbers change?
• Re-partition node color by modularity class now
that modularity has been recalculated
• Run Fruchterman Reingold layout again to fill
space left over from filtered nodes
Have you saved yet!?
Node Ranking by Centrality
1.  Statistics -> Network Diameter -> Run
2.  Ranking -> Betweeness Centrality -> Apply
Erdös Number
•  You may have noticed a key node which both has the
highest degree and betweeness ranking.
•  Click on the “Edit” button and select that node
(note the name)
•  Statistics -> Erdös Number -> Select that name -> OK
•  What will happen if you select a less conspicuous node?
Data Lab
•  Go to “Data Laboratory”
•  All node information as well as calculated statistics appear
here in a spreadsheet.
•  Sort by “Erdös Number” (descending)
•  What is the largest Erdös Number? N degrees of ________ .
•  Try sorting by other values (degree, closeness, betweeness)
Max is 7 degrees
of separation
Node Ranking by Eigenvector Centrality
1.  Statistics -> Eigenvector Centrality -> Run
2.  Ranking -> Eigenvector Centrality -> Apply
Node Ranking by PageRank
1.  Statistics -> PageRank -> Run
2.  Ranking -> PageRank -> Apply
Export to Image
•  Go to “Preview” mode
•  Click “Refresh” to see what you have now
•  Add node labels
•  “Node Labels” -> “Show Labels”
•  Adjust font size to avoid label overlapping
•  If Node Labels are overlapping, try expanding layout
•  Back to “Overview” -> Layout -> Fruchterman Reingold
•  Increase the “Area” parameter and re-run the layout
•  Then go back to “Preview” mode and click “Refresh”
•  May need to re-adjust Node Label text size
•  Experiment with “Curved” edges
labels omitted in slidedeck for privacy
Before we attack the network, save!
Network Resiliency
•  How can we fragment the network or increase the
separation between nodes?
•  Which nodes, if removed/influenced, would most greatly
impact the network?
•  What information have we learned already that could be
used?
Network Resiliency
•  Go to “Data Laboratory” -> sort by “PageRank descending
•  Select top 5 rows and delete them (did you save first!!!)
•  Note their names – Are these people influential in your life? sort
Top 5
Network Resiliency
•  Go back to statistics and note the following:
•  Average Degree, Network Diameter, Modularity, Connected
Components, Average Path Length
•  Also note how the network visually has changed
•  Re-run the statistics above and note how the numbers
changed
•  Did you successfully fragment the network (did # of connected
components increase)? (disrupting communications)
•  How many nodes do you think you’d have to remove if you
removed by lowest PageRank scores first? (robustness of network)
•  What if links represented load distributed across network? How
would the network load change after removing these key nodes?
(cascading failure)
Review
•  Network Analysis – Crash Course
•  Degree
•  Components
•  Modularity
•  Ranking
•  Resiliency
•  Gephi – Intro
•  Loading data (Facebook)
•  Navigation
•  Statistics
•  Exporting
•  Filtering
•  Resiliency
Questions?

More Related Content

PPTX
Social Network Analysis
PPTX
Social Network Analysis power point presentation
PDF
Social Network Analysis (SNA) Made Easy
PDF
Social Network Analysis (SNA)
PDF
Social Network Analysis & an Introduction to Tools
PPTX
Social Network Analysis Workshop
PPTX
Social Network Analysis: What It Is, Why We Should Care, and What We Can Lear...
PDF
Introduction to Social Network Analysis
Social Network Analysis
Social Network Analysis power point presentation
Social Network Analysis (SNA) Made Easy
Social Network Analysis (SNA)
Social Network Analysis & an Introduction to Tools
Social Network Analysis Workshop
Social Network Analysis: What It Is, Why We Should Care, and What We Can Lear...
Introduction to Social Network Analysis

What's hot (20)

PPT
Social network analysis course 2010 - 2011
PPTX
Social Network Analysis (SNA) 2018
PDF
Social Network Analysis
PPTX
06 Community Detection
PPT
The Basics of Social Network Analysis
PPT
Introduction to Social Network Analysis
PPTX
09 Ego Network Analysis
PPTX
Social Network Analysis Using Gephi
PPTX
Evolutionary Algorithms
PDF
Community Detection in Social Media
PPTX
Social Network Analysis
PDF
Social network analysis intro part I
PDF
Social network analysis part ii
PPTX
Social Network Analysis (Part 2)
PDF
History of Data Science
PPTX
Overview of IoT (JNTUK - UNIT 1)
PPTX
AI Algorithms
PPTX
Network measures used in social network analysis
PPTX
Group and Community Detection in Social Networks
PDF
Deep Feed Forward Neural Networks and Regularization
Social network analysis course 2010 - 2011
Social Network Analysis (SNA) 2018
Social Network Analysis
06 Community Detection
The Basics of Social Network Analysis
Introduction to Social Network Analysis
09 Ego Network Analysis
Social Network Analysis Using Gephi
Evolutionary Algorithms
Community Detection in Social Media
Social Network Analysis
Social network analysis intro part I
Social network analysis part ii
Social Network Analysis (Part 2)
History of Data Science
Overview of IoT (JNTUK - UNIT 1)
AI Algorithms
Network measures used in social network analysis
Group and Community Detection in Social Networks
Deep Feed Forward Neural Networks and Regularization
Ad

Viewers also liked (20)

PPT
Social Network Analysis
PDF
Social Networks and Social Capital
PPT
How to conduct a social network analysis: A tool for empowering teams and wor...
PPT
I Social Network
PPTX
Social Network Analysis - Lecture 4 in Introduction to Computational Social S...
PPTX
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
PDF
Facebook Network Analysis using Gephi
PPT
Social Network Analysis in R
PDF
Social Network Analysis With R
PDF
Social network analysis & Big Data - Telecommunications and more
PPTX
Social Network Analysis
PPTX
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
PPTX
Social Network Analysis and Visualization
PPTX
Simulation in Social Sciences - Lecture 6 in Introduction to Computational S...
PDF
Graph Evolution Models
PPT
Social Network Analysis, Semantic Web and Learning Networks
PPTX
A comparative study of social network analysis tools
PPTX
Social Network Visualization 101
PPTX
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
Social Network Analysis
Social Networks and Social Capital
How to conduct a social network analysis: A tool for empowering teams and wor...
I Social Network
Social Network Analysis - Lecture 4 in Introduction to Computational Social S...
Ethical and Legal Issues in Computational Social Science - Lecture 7 in Intro...
Facebook Network Analysis using Gephi
Social Network Analysis in R
Social Network Analysis With R
Social network analysis & Big Data - Telecommunications and more
Social Network Analysis
Basics of Computation and Modeling - Lecture 2 in Introduction to Computation...
Social Network Analysis and Visualization
Simulation in Social Sciences - Lecture 6 in Introduction to Computational S...
Graph Evolution Models
Social Network Analysis, Semantic Web and Learning Networks
A comparative study of social network analysis tools
Social Network Visualization 101
Big Data and Data Mining - Lecture 3 in Introduction to Computational Social ...
Ad

Similar to Social network analysis (20)

PPTX
Data Structure Graph DMZ #DMZone
PPTX
Basics Gephi Tutorial
PPTX
Social Network Analysis Introduction including Data Structure Graph overview.
PPT
Social Network Based Information Systems (Tin180 Com)
PPTX
Graph Analytics: Graph Algorithms Inside Neo4j
PPTX
Interactive visualization and exploration of network data with Gephi
PDF
Gephi tutorial-quick start
PPTX
Introduction to Network Analysis in Gephi
PDF
Descobrindo o tesouro escondido nos seus dados usando grafos.
PPTX
Apache Spark GraphX highlights.
DOCX
Final_Paper_Revision
PPTX
Node XL - features and demo
PPTX
Gephi, Graphx, and Giraph
PDF
Igraph
PDF
Comm645 gephi handout
PPTX
The Science Of Social Networks
PPTX
Network analysis lecture
PDF
Formations & Deformations of Social Network Graphs
PDF
Graph Analyses with Python and NetworkX
PPT
Visualize your Twitter network
Data Structure Graph DMZ #DMZone
Basics Gephi Tutorial
Social Network Analysis Introduction including Data Structure Graph overview.
Social Network Based Information Systems (Tin180 Com)
Graph Analytics: Graph Algorithms Inside Neo4j
Interactive visualization and exploration of network data with Gephi
Gephi tutorial-quick start
Introduction to Network Analysis in Gephi
Descobrindo o tesouro escondido nos seus dados usando grafos.
Apache Spark GraphX highlights.
Final_Paper_Revision
Node XL - features and demo
Gephi, Graphx, and Giraph
Igraph
Comm645 gephi handout
The Science Of Social Networks
Network analysis lecture
Formations & Deformations of Social Network Graphs
Graph Analyses with Python and NetworkX
Visualize your Twitter network

Recently uploaded (20)

PDF
EIS-Webinar-Regulated-Industries-2025-08.pdf
PDF
A symptom-driven medical diagnosis support model based on machine learning te...
PPTX
SGT Report The Beast Plan and Cyberphysical Systems of Control
PDF
Accessing-Finance-in-Jordan-MENA 2024 2025.pdf
PPTX
future_of_ai_comprehensive_20250822032121.pptx
PDF
A hybrid framework for wild animal classification using fine-tuned DenseNet12...
PDF
Introduction to MCP and A2A Protocols: Enabling Agent Communication
PDF
MENA-ECEONOMIC-CONTEXT-VC MENA-ECEONOMIC
PDF
Comparative analysis of machine learning models for fake news detection in so...
PDF
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
PDF
Transform-Quality-Engineering-with-AI-A-60-Day-Blueprint-for-Digital-Success.pdf
PDF
IT-ITes Industry bjjbnkmkhkhknbmhkhmjhjkhj
PDF
AI.gov: A Trojan Horse in the Age of Artificial Intelligence
PDF
Rapid Prototyping: A lecture on prototyping techniques for interface design
PDF
Convolutional neural network based encoder-decoder for efficient real-time ob...
PDF
“The Future of Visual AI: Efficient Multimodal Intelligence,” a Keynote Prese...
PDF
NewMind AI Weekly Chronicles – August ’25 Week IV
PDF
giants, standing on the shoulders of - by Daniel Stenberg
PDF
CXOs-Are-you-still-doing-manual-DevOps-in-the-age-of-AI.pdf
PDF
Transform-Your-Factory-with-AI-Driven-Quality-Engineering.pdf
EIS-Webinar-Regulated-Industries-2025-08.pdf
A symptom-driven medical diagnosis support model based on machine learning te...
SGT Report The Beast Plan and Cyberphysical Systems of Control
Accessing-Finance-in-Jordan-MENA 2024 2025.pdf
future_of_ai_comprehensive_20250822032121.pptx
A hybrid framework for wild animal classification using fine-tuned DenseNet12...
Introduction to MCP and A2A Protocols: Enabling Agent Communication
MENA-ECEONOMIC-CONTEXT-VC MENA-ECEONOMIC
Comparative analysis of machine learning models for fake news detection in so...
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
Transform-Quality-Engineering-with-AI-A-60-Day-Blueprint-for-Digital-Success.pdf
IT-ITes Industry bjjbnkmkhkhknbmhkhmjhjkhj
AI.gov: A Trojan Horse in the Age of Artificial Intelligence
Rapid Prototyping: A lecture on prototyping techniques for interface design
Convolutional neural network based encoder-decoder for efficient real-time ob...
“The Future of Visual AI: Efficient Multimodal Intelligence,” a Keynote Prese...
NewMind AI Weekly Chronicles – August ’25 Week IV
giants, standing on the shoulders of - by Daniel Stenberg
CXOs-Are-you-still-doing-manual-DevOps-in-the-age-of-AI.pdf
Transform-Your-Factory-with-AI-Driven-Quality-Engineering.pdf

Social network analysis

  • 1. SOCIAL NETWORK ANALYSIS Caleb Jones { “email” : “[email protected]”, “website” : “http://calebjones.info”, “twitter” : “@JonesWCaleb” }
  • 2. Overview •  Network Analysis – Crash Course •  Degree •  Components •  Modularity •  Ranking •  Resiliency •  Gephi – Intro •  Loading data (Facebook) •  Navigation •  Statistics •  Exporting •  Filtering •  Resiliency
  • 3. Resources SNA Coursera Course (next being taught October 2013) Linked by Albert-László Barabási
  • 4. Network Analysis – Crash Course •  Degree (n): The number of connections a node has. •  Node A has in-degree 3 and out-degree 1 •  Node B has degree 4 A B
  • 5. Network Analysis – Crash Course •  Component (n): A a maximally connected subgraph (undirected). •  Giant component is largest component component (giant) component Graph with nodes { A, B, C, X, Y, Z }
  • 6. Network Analysis – Crash Course •  Modularity (n) ~ Division of a graph into communities (modules/classes/cliques) with dense interconnection with the network having relatively sparse interconnection between communities. Community 1 Community 2 Graph with nodes { A, B, C, X, Y, Z }
  • 7. Network Analysis – Crash Course • Ranking: A measure of a node’s “importance” • Many different methods for determining “importance” • Degree, Centrality, Closeness, Betweenness, Eigenvector, HITS, PageRank, Erdös Number • Which one to consider depends on the question being asked • Precursor to identifying network resilience, diffusion, and vulnerability
  • 8. Network Analysis – Crash Course • Degree ranking: Quantity over quality Node Score A 3 B 3 C 1 D 1 X 1 Y 1 Z 3 Q 1
  • 9. Network Analysis – Crash Course • Betweeness Ranking: How frequently a node appears on shortest paths. Node Score A 15 B 11 C 0 D 0 X 0 Y 0 Z 11 Q 0
  • 10. Network Analysis – Crash Course • Closeness Ranking: Average number of hops from a node to rest of network. Node Score A 1.571 B 1.857 C 2.714 D 2.714 X 2.714 Y 2.714 Z 1.857 Q 2.429 Note: Smaller is (usually) better
  • 11. Network Analysis – Crash Course • Eigenvector Ranking: A node’s “influence” on the network (accounts for who you know) Node Score A 1 B 0.836 C 0.392 D 0.392 X 0.392 Y 0.392 Z 0.836 Q 0.465 Google’s PageRank is a variant of this Based on eigenvector of adjacency matrix
  • 12. Network Analysis – Crash Course • Erdös Ranking: Number of hops to specific node (degrees of separation). Node Score A 0 B 1 C 2 D 2 X 2 Y 2 Z 1 Q 1 Note: Smaller is (usually) better What if “Erdös” is an influential CEO? What if “Erdös” has bird flu? Erdös
  • 13. Network Analysis – Crash Course • Erdös Ranking: Number of hops to specific node (degrees of separation). Node Score A 2 B 1 C 2 D 0 X 4 Y 4 Z 3 Q 3 Note: Smaller is (usually) better What if “Erdös” is an influential CEO? What if “Erdös” has bird flu? Erdös
  • 14. Network Analysis – Crash Course • Limitations: • Only considered undirected networks (directed is more complicated) • Treated all edges as equal. Many networks have a weight or cost associated to edges (e.g. distance) • Treated all nodes as equal. A node’s importance may be inherent based on attributes separate from its position in network (e.g. dating sites)
  • 15. Network Analysis – Crash Course • Resiliency (removing nodes/links): • Target nodes based on their “importance” • High degree nodes more likely to affect local communities • High betweeness/Eigenvector nodes more likely to fragment communities
  • 16. Gephi Introduction •  Platform for visualizing and analyzing networks •  https://gephi.org/ •  Cross-platform •  Plugin model
  • 17. Facebook Dataset •  Download your data (gml) •  http://snacourse.com/getnet/ •  Import into Gephi •  File -> Open -> Select downloaded .gml file •  Choose “undirected” for “Graph Type”
  • 19. Partitioning Communities 1.  Statistic -> Modularity -> Run (use defaults) 2.  Partition -> Nodes (refresh) -> Modularity class -> Apply
  • 20. Degree Distribution 1.  Statistic -> Average Degree -> Run 2.  Partition -> Nodes (refresh) -> Modularity class -> Apply Lots of nodes with few connections Only a few with a large number of connections Power law distribution?
  • 21. Node Ranking by Degree 1.  Ranking -> Nodes (refresh) -> Degree -> Apply (try tweaking min/max size and Spline for desired emphasis)
  • 22. Filtering Isolated Nodes (“noise”) 1.  Statistics -> Connected Components -> Run 2.  Filters -> Attributes -> Partition Count -> Component ID 3.  Drag “Component ID” down into “Queries” section 4.  Click on “Partition Count”, slide the settings bar, and click “Filter” – adjust to remove isolated nodes Can be important step when dealing with very large data sets. Depending on degree distribution, filter can be set quite high.
  • 23. Re-adjust after Filtering • Need to re-run previous steps to refresh calculated values now that filtering has been done. • Statistics -> Average degree, modularity, connected components •  How did these numbers change? • Re-partition node color by modularity class now that modularity has been recalculated • Run Fruchterman Reingold layout again to fill space left over from filtered nodes
  • 24. Have you saved yet!?
  • 25. Node Ranking by Centrality 1.  Statistics -> Network Diameter -> Run 2.  Ranking -> Betweeness Centrality -> Apply
  • 26. Erdös Number •  You may have noticed a key node which both has the highest degree and betweeness ranking. •  Click on the “Edit” button and select that node (note the name) •  Statistics -> Erdös Number -> Select that name -> OK •  What will happen if you select a less conspicuous node?
  • 27. Data Lab •  Go to “Data Laboratory” •  All node information as well as calculated statistics appear here in a spreadsheet. •  Sort by “Erdös Number” (descending) •  What is the largest Erdös Number? N degrees of ________ . •  Try sorting by other values (degree, closeness, betweeness) Max is 7 degrees of separation
  • 28. Node Ranking by Eigenvector Centrality 1.  Statistics -> Eigenvector Centrality -> Run 2.  Ranking -> Eigenvector Centrality -> Apply
  • 29. Node Ranking by PageRank 1.  Statistics -> PageRank -> Run 2.  Ranking -> PageRank -> Apply
  • 30. Export to Image •  Go to “Preview” mode •  Click “Refresh” to see what you have now •  Add node labels •  “Node Labels” -> “Show Labels” •  Adjust font size to avoid label overlapping •  If Node Labels are overlapping, try expanding layout •  Back to “Overview” -> Layout -> Fruchterman Reingold •  Increase the “Area” parameter and re-run the layout •  Then go back to “Preview” mode and click “Refresh” •  May need to re-adjust Node Label text size •  Experiment with “Curved” edges
  • 31. labels omitted in slidedeck for privacy
  • 32. Before we attack the network, save!
  • 33. Network Resiliency •  How can we fragment the network or increase the separation between nodes? •  Which nodes, if removed/influenced, would most greatly impact the network? •  What information have we learned already that could be used?
  • 34. Network Resiliency •  Go to “Data Laboratory” -> sort by “PageRank descending •  Select top 5 rows and delete them (did you save first!!!) •  Note their names – Are these people influential in your life? sort Top 5
  • 35. Network Resiliency •  Go back to statistics and note the following: •  Average Degree, Network Diameter, Modularity, Connected Components, Average Path Length •  Also note how the network visually has changed •  Re-run the statistics above and note how the numbers changed •  Did you successfully fragment the network (did # of connected components increase)? (disrupting communications) •  How many nodes do you think you’d have to remove if you removed by lowest PageRank scores first? (robustness of network) •  What if links represented load distributed across network? How would the network load change after removing these key nodes? (cascading failure)
  • 36. Review •  Network Analysis – Crash Course •  Degree •  Components •  Modularity •  Ranking •  Resiliency •  Gephi – Intro •  Loading data (Facebook) •  Navigation •  Statistics •  Exporting •  Filtering •  Resiliency