1 / 35

Visual Analysis of Large Heterogeneous Social Networks by Semantic and Structural Abstraction

Visual Analysis of Large Heterogeneous Social Networks by Semantic and Structural Abstraction. Zequian shen, Kwan-Liu Ma, Tina Eliassi-Rad Department of Computer Science, University of California IEEE Transactions on Visualization and Computer Graphics, Vol. 12, No. 6, 2006.

percy
Télécharger la présentation

Visual Analysis of Large Heterogeneous Social Networks by Semantic and Structural Abstraction

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Visual Analysis of Large Heterogeneous Social Networks by Semantic and Structural Abstraction Zequian shen, Kwan-Liu Ma, Tina Eliassi-RadDepartment of Computer Science, University of California IEEE Transactions on Visualization and Computer Graphics,Vol. 12, No. 6, 2006. Reporter: Yi-Ting Huang Date: 2009/04/24

  2. Outline • Introduction • Related Work • OntoVis • Semantic Abstraction • Structural Abstraction • Importance Filtering • Graph Layout and Animation • Case Studies • Movie Domain • Terrorism Domain • Future Work and Conclusion • Comments

  3. Introduction • A social network represents relationships between actors (such as people, business partners, nations, etc.). • Analyzing a social network can provide structural intuition according to the ties linking actors and lead to improved understanding of social processes. • Challenges: • the network can be very large containing from thousands to even millions of nodes. • large social networks commonly have complex relations among their actors (such as the small-world property). • a social network may have heterogeneous nodes and links.

  4. Related Work (1/2) • To overcome the visual complexity of very large networks, • Abello et al. introduce network visualizationtechniques that allow users to find facts about actors andrelations among them more quickly through interactivenavigation of the network at different levels of abstraction,from an overview to close-up views of some isolated groups. • Focus+context techniques have also been used toallow users to simultaneously access overview informationwhile working on details of interesting groups.

  5. Related Work (2/2) • Despite thewealth of network visualization and analysis research, fewwere done for heterogeneous networks. • NetDraw [22] is a program to visualize large socialnetworks. It can handle heterogeneous networks with twonode types. • Pajek [2] is a widely used network visualizationand analysis system. However, Pajek does not use ontology information effectively, because it is not designed specifically for heterogeneous social network visual analysis.

  6. OntoVis (1/2) • OntoVis is a social network visual analytics tool that is designed to take advantage of this additional Information. • OntoVis allows users to more easily isolate actors and relationships for making inferences or identifying the key actors. OntoVis is unique because it can do both semantic abstraction and structural abstraction. • The resulting graph is displayed using a clever graph layout method.

  7. OntoVis (2/2) • A semantic graph is defined as G ¼ ðV ;E; vt and its associated ontology graph is defined as OG ¼ðTV ; . • V denotes the vertex set and E denotes the edge set. • TV ¼ft1;t2; ... ;tng is a set of vertex types and TE ¼fðti;tjÞ : ti;tj 2 TV is a set of edge types. • vt denotes a mapping from V to TVthat associates a vertex to its type. If v is a vertex in the semantic graph, vtðv denotes the type for vertex v. • Similarly, et denotes a mapping from E to TE that associates an edge with its type. If e is an edge in the semantic graph, etðe denotes the type for edge e.

  8. Demo

  9. Semantic Abstraction (1/2) • In OntoVis, users are able to construct a derived graph from the original graph by including only nodes whose types are selected in the ontology graph. • It would be very helpful if the users could also remove nodes or add nodes back into the derived graph as desired during an analysis. • An abstraction is defined as an induced graphðV S;ES; of a selected set of node types TSV T , where VS ¼fv 2 V : vtðvÞ2 TSV g and ES ¼fðvvtðviÞ;vtðvjÞ2 • Each node v 2 VS has an attribute set, which is defined as vaðvÞ¼fu 2 V : ðu; vÞ2 E; vtðuÞ.

  10. Semantic Abstraction (2/2) • In OntoVis, as soon as a node type is chosen from the ontology graph, all nodes with this type are added to the semantic abstraction. • All the nodes that are not included in the abstraction are not deleted; rather, they are converted into attributes of the nodes kept in the abstraction (which are their neighbors in the original graph). • Semantic abstraction not only provides a simple view of interest to help isolate key actors in social networks but also allows users to expand the abstraction back locally to see details.

  11. Example 1 (1/3) • The task is to find the similarity and difference among all terrorist organizations.

  12. Example 1 (2/3)

  13. Example 1 (3/3)

  14. Structural Abstraction • The other way to manage the visual complexity of a large network is to make use of its structural information (such as connectivity and node degree) to condense the network. • Problems: First, the network contains many nodes of degree one connecting to specific nodes. Second, the network has duplicate paths. • Solutions:The nodes connect two nodes that are also directly connected. OntoVis can directly remove one-degree nodes and duplicate paths.

  15. Example 2

  16. Importance Filtering (1/6) • A main question in analysis of heterogeneous social networks is which types and relationships should be selected and investigated.

  17. Importance Filtering (2/6) • Nodes with large degrees per type and dispersions indicate key actors in a network.

  18. Importance Filtering (3/6) • The above quantities tell us the expected number of connections of a node of a given type to another type but not the correlations between different types. • We thus quantify the disparity (or affinity) of each type to link to other types.

  19. Importance Filtering (4/6)

  20. Importance Filtering (5/6)

  21. Importance Filtering (6/6) • A node type with a large value for its disparity of connected types, Rð, preferentially links to a small number of types. • OntoVis uses node sizes to represent disparity of connected types in an ontology graph. • Based on such information,users can focuson the types with high connectivity and unbalanced connections (which have higher information content).

  22. Graph Layout and Animation (1/2) • We have chosen to use force-directed layout graph drawing. • One problem with most graph layout methods is the ignorance of visual overlapping of the nodes.The refinement process goes through all the overlapping nodes and pushes the smaller nodes away from the larger nodes. • Because force-directed layout methods are designed for connected networks, they cannot place unconnected nodes very well (to better utilize the display space). We can simply filter out all the unconnected nodes or place them in the peripheral area.

  23. Graph Layout and Animation (1/2) • Whenever a node is added to or removed from the network, the force-directed layout is recomputed.Add a set of nodes with the same type to the network;it is placed next to the parent node.

  24. Movie Domain(1/3) • The movie network is compiled from the UCI KDD Archive. • There are 35,312 nodes and 108,212 links in this network. • The network contains eight node types, including person, movie, role, studio, distributor, genre, award and country.

  25. Movie Domain(2/3)

  26. Movie Domain(3/3)

  27. Terrorism Domain(1/7) • The terrorism network used in this case study is compiled from the MIPT Terrorism Knowledge Base

  28. Terrorism Domain(2/7)

  29. Terrorism Domain(3/7)

  30. Terrorism Domain(4/7)

  31. Terrorism Domain(5/7)

  32. Terrorism Domain(6/7)

  33. Terrorism Domain(7/7)

  34. Future Work • If the ontology graph associated with the original network would contain errors, analyzing the derived abstraction could uncover the errors and help users correct and refine the ontology graph. • Connection subgraphs capture the strongest relationships between two nodes andcan be readily incorporated into OntoVis.

  35. Conclusion • In this paper, we present OntoVis, a visual analysis tool forexploring and understanding large heterogeneous social networks. • Ontology graphs are used as a guide for interactive exploration, coupled with simple but powerful semantic and structural abstractions and filtering using statistical measures of the nodes and links in the network. • The resulting networks are intuitively displayed and respond to user interaction.

More Related