network analytics er model towards a conceptual view of
play

Network Analytics ER Model Towards a Conceptual View of Network - PowerPoint PPT Presentation

Network Analytics ER Model Towards a Conceptual View of Network Analytics Qing Wang Research School of Computer Science The Australian National University Australia qing.wang@anu.edu.au 2 A Question 1 What is the role of conceptual


  1. Network Analytics ER Model Towards a Conceptual View of Network Analytics Qing Wang Research School of Computer Science The Australian National University Australia qing.wang@anu.edu.au 2

  2. A Question 1 • What is the role of conceptual modelling in Big-data analytics, such as network analysis? ? Conceptual modelling Network analysis ————————————————————————————————————————————————————————————————————- The images are taken from Google Image. 3

  3. Motivating Example • Let’s start with a traditional ER model: AUTHOR WRITE ARTICLE PUBLISH CONFERENCE + CITE JOURNAL 4

  4. Motivating Example • Queries in a bibliographical network: • Collaborative communities • Most influential articles • Top-k influential researchers • Correlation journal citation • ... AUTHOR WRITE ARTICLE PUBLISH + CONFERENCE CITE JOURNAL 5

  5. Motivating Example • Queries in a bibliographical network: • Collaborative communities • Most influential articles • Top-k influential researchers • Correlation journal citation • ... • Some questions: – Semantic integrity : Are they semantically relevant and consistent? – Analysis efficiency : Can the efficiency be improved by leveraging their semantics at the conceptual level? – Network dynamics : Can they be dynamically performed so as to predict trends? 6

  6. Network Analytics ER Model • We propose the Network Analytics ER Model (NAER) that extends the tradi- tional ER models in three aspects: • Structure i.e., analytical types are added • Manipulation i.e., topological constructs are added • Integrity i.e., semantic constraints are extended. 7

  7. The NAER Model - Structure • Base types vs analytical types • Base types : from the data management perspective i.e., how to control data • Analytical types : from the data analysis perspective i.e., how to use data Base types Analytical types Base entity Analytical entity Base relationship Analytical relationship • Base types are the root from which analytical types can be derived. 8

  8. The NAER Model - Example 1 • S co for the query collaborative communities : • supp ( author ∗ ) = { author } • supp ( coauthorship ) = { author , article , write } . S co COAUTHOR AUTHOR* SHIP AUTHOR AUTHOR WRITE WRITE ARTICLE ARTICLE PUBLISH CONFERENCE + JOURNAL CITE 9

  9. The NAER Model - Example 2 from ARTICLE* S ci CITATION to AUTHOR WRITE ARTICLE ARTICLE PUBLISH CONFERENCE + JOURNAL CITE CITE • S ci for most influential articles and top-k influential researchers : • supp ( article ∗ ) = { article } • supp ( citation ) = { article , cite } 10

  10. The NAER Model - Example 3 • S jo for the query correlation journal citations : • supp ( journal ∗ ) = { journal } • supp ( cocitation ) = { article , cite , journal , publish } S jo JOURNAL* COCITATION AUTHOR WRITE ARTICLE ARTICLE PUBLISH PUBLISH + CONFERENCE JOURNAL JOURNAL CITE CITE 11

  11. The NAER Model - Manipulation • Using topological constructs to specify topological structures hidden underneath base entities and relationships. (1) cluster-by classifies elements into a set of clusters. (2) rank-by assigns rankings to elements. • A topological measure is used in each topological construct, • centrality – Cent : A �→ N describing how central elements are in A , such as degree, betweenness and closeness centrality. • similarity – Simi : A × A �→ N describing the similarity between two elements in A , such as q-gram, adjacency-based and distance-based similarity. 12

  12. The NAER Model - Examples • Each collaborative community is a group of authors in a network over S co measured by closeness centrality. cluster-by ( S co , author ∗ , cent-closeness ). • The influence of an article is ranked, indicating its influence in terms of a network over S ci , and measured by indegree centrality. rank-by ( S ci , article ∗ , cent-indegree ). • Each correlation group contains journals that are correlated in a network over S jo and measured by betweenness centrality. cluster-by ( S jo , journal ∗ , cent-betweenness ). 13

  13. The NAER Model - Integrity • Integrity constraints over topological constructs: • disjoint (resp. overlapping ) on cluster-by Clusters must be disjoint (resp. can be overlapping). • connected on cluster-by For each cluster, there is a path between each pair of its members, running only through elements of the cluster. • edge-density on cluster-by For each cluster, its members have more edges inside the cluster than edges with other members who are outside the cluster. • total (resp. partial ) on rank-by Every element must be (resp. may not necessarily be) ranked. 14

  14. Analytical Framework • Our analytical framework has three components: – A relatively large core schema i.e., base entity and relationship types – A number of small topology schemas i.e., analytical entity and relationship types – A collection of query topics i.e., trees, each representing a hierarchy of query object classes 15

  15. Analytical Framework Query Influential Query Topics Influential researcher article (VLDB) Collaborative (top k) Correlation community group Influence of VLDB article Researcher article Topology Schemas S ci S co from S jo ARTICLE* CITATION COAUTHOR to AUTHOR* JOURNAL* COCITATION SHIP Core Schema AUTHOR AUTHOR WRITE WRITE ARTICLE ARTICLE PUBLISH PUBLISH CONFERENCE + JOURNAL JOURNAL CITE CITE 16

  16. Design Principles • But, how should we design such an analytical framework in practice? (1) Identify data requirements (2) Design the core schema based on the data requirements (3) Identify query requirements (4) Design topology schemas based on the query requirements (5) Identify constraints 17

  17. Design Principles – Questions Question I: What are data and query requirements? • Data and queries are two different kinds of requirements. • Queries in NA applications may exist in various forms, e.g., • database queries in the traditional sense • analysis queries from a topological perspective • a combination of database and analysis queries • When designing a conceptual model for NA applications, we are particularly interested in analysis queries. 18

  18. Design Principles – Questions Question II: How are query requirements and query topics related? • Queries need to be analyzed to unravel: • The semantic structure of a query • The semantic structure among a set of queries • Each query Q is associated with a query topic tree t ( Q ). • If t ( Q 1 ) and t ( Q 2 ) coincide over some nodes, then it means that two queries Q 1 and Q 2 are related. 19

  19. Design Principles – Questions t(Q1) t(Q2) t(Q3) t(Q4) Influential Collaborative Influential Correlation researcher community article (VLDB) group (top 10) Influence of Influence of VLDB article Researcher article article (a) Influential Collaborative Influential Correlation researcher community article (VLDB) group (top k) Influence of VLDB article Researcher article (b) 20

  20. Design Principles – Questions Question III: How are the core and topology schemas designed? • Central idea: (1) Data requirements should be captured by the core schema . (2) Query requirements should be captured by a collection of topology schemas . • Two criteria for designing topology schemas: • Topology schemas should be small . • Topology schemas should be dynamic . 21

  21. Composition of Topology Schemas S co (a) Composed through an analytical type, i.e., has AUTHOR* ARTICLE* JOURNAL* S ci HAS S jo AUTHOR* ARTICLE* S co S ci WRITE (b) Composed through a base type, i.e., Write and Publish ARTICLE* JOURNAL* S ci PUBLISH S jo 22

  22. Conclusions and Future Work • We proposed the NAER model – a conceptual modelling paradigm that incor- porates both data and query requirements of network analysis. • Enable us to better understand the semantics of data and queries, and how they interact with each other; • Avoid unnecessary computations in network analysis queries; • Support comparative network analysis. • We plan to implement the NAER model over network analysis applications. • Establish an analytical framework; • Incorporate a query engine for processing topic-based queries. 23

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend