https://github.com/manuparra/knowledgegraphs
Knowledge data processing
https://github.com/manuparra/knowledgegraphs
d3js knowledge-graph knowledge-representation scalable-data-analysis
Last synced: about 1 month ago
JSON representation
Knowledge data processing
- Host: GitHub
- URL: https://github.com/manuparra/knowledgegraphs
- Owner: manuparra
- Created: 2018-10-07T08:13:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T22:14:45.000Z (over 7 years ago)
- Last Synced: 2025-05-18T12:08:11.216Z (10 months ago)
- Topics: d3js, knowledge-graph, knowledge-representation, scalable-data-analysis
- Language: HTML
- Homepage: https://manuparra.github.io/knowledgegraphs/
- Size: 92.8 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RCA + CERN Knowledge Graphs
This repository contains the implementatioin and the information for the deployment of knowledge discovery and concept association graphs, using the visual tool proposed
in HIVE Plots (https://bost.ocks.org/mike/hive/). For our project we will use a structure based on entities (people) and a number of attributes
and organizational structures to give value to the represented data.
## Usage and deployment
Source code in the ``/docs`` directory of the repository. Changes are implemented directly in the project website in: https://manuparra.github.io/knowledgegraphs/
## Database structure
### Version 0.5
JSON database, organized following the next (entity name, projects, expertise):
```
{
"name": "person.ManuelParra",
"projects": [
"org.CERN.EP_NU.DUNE",
"org.CERN.IdeaSquare",
"org.CERN.EP_NU",
"org.CERN"
],
"expertise": [
"programming.Python",
"programming.JS"
]
}
```
### Version 1.0
**[Testing with this release]**
JSON database, organized following the next (entity name, projects, institute, residence, contact, expertise):
```
{
"name": ["ipt.CharlotteQin"],
"projects": ["CERN.IdeaSquare"],
"institutes": ["org.ImperialCollegeLondon","collab.RoyalCollegeofArt"],
"residence": ["London,UK"],
"contact": ["charlotte.qin@cern.ch"],
"expertise": ["design, prototyping, graphics, programming in python and D3js"]
}
```
## Examples