Link works with their ASJC subject codes¶
from alexandria3k.processes import link_works_asjcs
- processes.link_works_asjcs.process(database_path)¶
Create a many to many table linking Crossref works with Scopus All Science Journal Classification Codes — ASJCs.
- Parameters
database_path (str) – The path specifying the SQLite database to process and populate. The database shall already contain the ASJC dataset and the Crossref work_subjects table.
Generated schema¶
CREATE TABLE works_asjcs(
work_id,
asjc_id
);