- Neo4j Graph Data Modeling
- Mahesh Lal
- 158字
- 2021-07-16 13:31:15
Graphs in mathematics
A graph is a mathematical structure of objects in which some pairs of objects are connected by links. The objects are denoted by abstractions called nodes (also known as vertices) and their links are represented by relationships (also known as edges). The relationships might be directed where it makes semantic sense in one particular direction. In cases where the semantics work in both directions, we can safely use undirected relationships to denote the link.

Figure 1.1: Edges, vertices, directionality
In Figure 1.1, we have three actors or entities, Alice, Bob, and London, which are represented as nodes. The links between them are denoted by relationships. Alice is married to Bob and Bob is married to Alice. Both true, hence we represent Is Married To as an undirected relationship. However, Alice lives in London is represented by a directed relationship, Lives In, from Alice to London. This is because London lives in Alice cannot be true.
- scikit-learn Cookbook
- Spring Cloud Alibaba核心技術與實戰案例
- Android Application Development Cookbook(Second Edition)
- Java程序員面試算法寶典
- Mastering Scientific Computing with R
- Python Geospatial Development(Second Edition)
- Mastering Kali Linux for Web Penetration Testing
- Getting Started with Python Data Analysis
- KnockoutJS Starter
- RESTful Java Web Services(Second Edition)
- 監控的藝術:云原生時代的監控框架
- 現代C:概念剖析和編程實踐
- 嵌入式Linux C語言程序設計基礎教程
- 計算語言學導論
- Python預測分析與機器學習