Graph of links between entities and news (in this case the command with neo4j-import was not prepared but this is advised against the option LOAD CSV for large datasets) the data are the same as the dataset 03 b but, when importing, they are otherwise rearranged generating a node in the graph for each news.
import instructions for neo4j:
“’
USING PERIODIC COMMIT
Load CSV WITH HEADERS FROM ‘file:///people.csv’ AS row
Merge (e:PER {_id: row._id, text: row.text});
USING PERIODIC COMMIT
Load CSV WITH HEADERS FROM ‘file:///orgs.csv’ AS row
Merge (e:ORG {_id: row._id, text: row.text});
USING PERIODIC COMMIT
Load CSV WITH HEADERS FROM ‘file:///locations.csv’ AS row
Merge (e:LOC {_id: row._id, text: row.text});
USING PERIODIC COMMIT
Load CSV WITH HEADERS FROM ‘file:///misc.csv’ AS row
Merge (e:MISC {_id: row._id, text: row.text});
USING PERIODIC COMMIT
Load CSV WITH HEADERS FROM ‘file:///news.csv’ AS row
Merge (n:NEWS {_id: row._id, title: row.title});
USING PERIODIC COMMIT
Load CSV WITH HEADERS FROM ‘file:///connections_1.csv’ AS row
Merge (e1 {_id: row._id1})
Merge (e2 {_id: row._id2})
With row, e1, e2
Merge (e1)-[:rel{weight: tointeger(row.weight)}]-(e2);
“’
For more information see: https://github.com/msramalho/desarquivo/blob/master/DATASETS.md
Build on reliable and scalable technology
FAQ
Frequently Asked Questions
Some basic informations about API Store ®.
Operation and development of APIs are currently fully funded by company Apitalks and its usage is for free.
Yes, you can.
All important information such as time of last update, license and other information are in response of each API call.
In case of major update that would not be compatible with previous version of API, we keep for 30 days both versions so you will have enough time to transfer to new version. We will inform you about the changes in advance by e-mail.