An open API service indexing awesome lists of open source software.

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

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