Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/canggihpw/vismathgenes
Visualize the ancestor of math people
https://github.com/canggihpw/vismathgenes
graph tree-structure visualization
Last synced: about 2 months ago
JSON representation
Visualize the ancestor of math people
- Host: GitHub
- URL: https://github.com/canggihpw/vismathgenes
- Owner: canggihpw
- License: agpl-3.0
- Created: 2017-08-11T09:29:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-12T01:20:57.000Z (over 7 years ago)
- Last Synced: 2024-02-21T10:34:13.376Z (11 months ago)
- Topics: graph, tree-structure, visualization
- Language: Python
- Size: 67.4 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Visualization of MathGenes
Visualize the ancestor of people described in https://www.genealogy.math.ndsu.nodak.edu using graph.## Usage
Import the class
```
from MathGenealogy import MathGenealogy
```
Create instance
```
MG = MathGenealogy()
```
Put the person you are looking for. The PersonID can be retrieved in https://www.genealogy.math.ndsu.nodak.edu. For the next feature, I will making this more convenient.
```
PersonID = "53269"
PersonName = "Einstein"
```
Get the ancestors
```
MG.find_ancestors(PersonID,PersonName)
```
## Result
Code above will result the following graph![Albert Einstein](53269.png)
## Features to be added
* Search PersonID
* Find descendants## License
GNU Affero General Public License v3.0