Читать книгу Social Network Analysis - Группа авторов - Страница 4
List of Illustrations
Оглавление1 Chapter 1Figure 1.1 Social network analysis.Figure 1.2 Social network analysis using Python.Figure 1.3 Flowchart of social network.
2 Chapter 2Figure 2.1 Comparison directed and undirected graph.Figure 2.2 Simple graph.Figure 2.3 Multigraph.Figure 2.4 Weighted graph.Figure 2.5 Unweighted graph.Figure 2.6 NodeXL network overview discovery and exploration in excel [5].Figure 2.7 Python official documentation.Figure 2.8 Anaconda navigator.Figure 2.9 Conda environment installation.Figure 2.10 QR code for workbooks and source codes.Figure 2.11 Code blocks for importing libraries.Figure 2.12 Code block for reading data.Figure 2.13 Code block for reading edge list.Figure 2.14 Visualization of Facebook users.Figure 2.15 Code block for centrality measures.Figure 2.16 Visualization of centrality measures on Facebook users.Figure 2.17 Visualization of graph database used in business.
3 Chapter 3Figure 3.1 The presentation of a small-scale network based on the interpersonal ...Figure 3.2 E-mail exchanges between company employees [2].Figure 3.3 Links between web blogs as a form of a large network [2].Figure 3.4 (a) Directed graph with 4 nodes [4]. (b) A graph with 4 nodes [4].Figure 3.5 Social networks quickly expand to reach many people [6].Figure 3.6 A small network that has one highly connected node, or hub [7].Figure 3.7 Scale-free network in vast size where the hub nodes could be distingu...
4 Chapter 4Figure 4.1 Aspects of cascading behavioral pattern.Figure 4.2 Cascading behavior in OSN.
5 Chapter 5Figure 5.1 Social network showing links and nodes in healthcare.Figure 5.2 Diagrammatic representation of existing methods.Figure 5.3 Diagrammatic representation of graph theory.
6 Chapter 6Figure 6.1 Building social semantic ontology for specific domain.Figure 6.2 Code for building agriculture ontology.Figure 6.3 Code for building object property.Figure 6.4 Usage of class crop in agriculture ontology.Figure 6.5 Code for defining restrictions in object property.Figure 6.6 Ontology graph for agriculture ontology.Figure 6.7 Code for social ontology.Figure 6.8 Asserted model for social ontology under agriculture domain.Figure 6.9 Analyzing social elements over agriculture domain ontology.Figure 6.10 Class hierarchy of social semantic ontology under agriculture domain...Figure 6.11 Code for object property in social ontology.Figure 6.12 Ontology graph for social semantic ontology.Figure 6.13 Validation of social semantic ontology.
7 Chapter 7Figure 7.1 Two viewpoints on the development of weblog information cascades. (a)...Figure 7.2 The development and topology of cascade networks.Figure 7.3 Links to cascades, left: perspective on relationships, right: perspec...Figure 7.4 A sample decision tree for use in computer network.Figure 7.5 (a) Outlier detection classification K = 2, (b) and (c) combined clas...Figure 7.6 Performance measurement index in graphical representation.
8 Chapter 8Figure 8.1 Overall methodology.Figure 8.2 Forecasting happy word.Figure 8.3 Forecasting “love” word.
9 Chapter 9Figure 9.1 Statista presented a ranking of social networks based on the number o...Figure 9.2 The semantic analysis framework in social media that transforms data ...Figure 9.3 Workflow of proposed system model.Figure 9.4 The user-side program’s activity diagram.Figure 9.5 Confusion matrix with 92.50% accuracy.Figure 9.6 Hashtag/keyword entry page.Figure 9.7 An examination of the effectiveness of positive and negative tweets.
10 Chapter 10Figure 10.1 Concept of graph theory.Figure 10.2 Connections in a graph.Figure 10.3 Linear threshold model. Source: https://snap-stanford.github.io/cs22...Figure 10.4 Independent cascade model.Figure 10.5 SIR model in python.Figure 10.6 SIR model graph showing susceptible, infected & recovered individual...Figure 10.7 Cascading behavior.Figure 10.8 Payoff matrix in coordination game.Figure 10.9 Payoff in cascading behavior.Figure 10.10 Keypeople in cascading behavior.Figure 10.11 Impact of communities on cascades.Figure 10.12 Cascading on clusters.
11 Chapter 11Figure 11.1 Nodes and edges in the graph.Figure 11.2 Nodes and edges in the social network.Figure 11.3 Python program for creating a symmetric social network using Network...Figure 11.4 Visualizing the symmetric social network created by using NetworkX.Figure 11.5 Python program for creating the asymmetric social network using Netw...Figure 11.6 Visualizing the asymmetric social network created by using NetworkX.Figure 11.7 Python program for creating an asymmetric social network by applying...Figure 11.8 Visualizing the asymmetric social network created after applying the...Figure 11.9 Implementing the weighted social network using NetworkX.Figure 11.10 Displaying the weighted network in the form of circular architectur...Figure 11.11 Developing the multigraph for social networks using G_graph.edges (...Figure 11.12 Results collected using the G_graph.edges () method.Figure 11.13 Degree of a node for symmetric social network.Figure 11.14 Clustering and average clustering of a node for symmetric graph.Figure 11.15 Calculating shortest path and shortest path length of a node.Figure 11.16 Implementing the breadth-first search algorithm for User C.Figure 11.17 Implementing the breadth-first search algorithm for User A.Figure 11.18 Eccentricity distribution of a node in a graph using the nx.eccentr...Figure 11.19 Centrality by Eigenvector using NetworkX () function.Figure 11.20 Nodes with a high degree of betweenness centrality.Figure 11.21 Closeness to all other nodes is displayed for the G_symmetric graph...Figure 11.22 Loading necessary packages and the dataset.Figure 11.23 Function info () to display the dataframe’s contents.Figure 11.24 Function info () to illustrate the nodes and edges in the data set.Figure 11.25 Degree_centrality () and nx.degree () functions.Figure 11.26 Average shortest path calculation between two networks.Figure 11.27 The draw_networkx () method to visualize the facebook data set.Figure 11.28 The visual representation of the facebook data set with draw_networ...Figure 11.29 Python code for betweenness_centrality ().Figure 11.30 The visual representation of the data set with betweenness_centrali...Figure 11.31 The sorted() method displays the nodes with the centrality.Figure 11.32 PageRank() method to estimate popularity.Figure 11.33 Popularity nodes according to the page rank() method.