NLeSC / rcn_py

RCN is a python package to analyze Research Collaboration Network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Store data in a database

Peter9192 opened this issue · comments

A database might be more suitable for storing data tables, especially when they grow bigger. Perhaps start with a simple sqlite database?

commented

Sure, thank you for the suggestion. I am going to work on SQLite, with 3 main tables:

  1. Publication table: DOI(primary key), title, abstract, etc.
  2. Author table: ORCID(primary key), author_name, country, etc.
  3. Author-Publication table: ORCID(primary key), DOI(primary key)
    (Thanks for Stefan's help)