Zmeos/Compact_OpenAIRE_citation_graph
📚 Compact OpenAIRE Citation Graph Based on OpenAIRE Graph v11.1.1 (source on Zenodo). The complete OpenAIRE citation graph, distilled into a handful of compact, analysis-ready files — the full scholarly citation network of the open-science ecosystem, small enough to actually work with. Citation graphs at this scale are usually locked behind multi-terabyte dumps and heavyweight infrastructure. This dataset makes the entire OpenAIRE citation network loadable… See the full description on the dataset page: https://huggingface.co/datasets/Zmeos/Compact_OpenAIRE_citation_graph.
<div style="display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 16px;"> <a href="https://doi.org/10.5334/johd.520"><img src="https://img.shields.io/badge/Paper-JOHD%2012(1)%2063-blue" alt="Paper"></a> <a href="https://doi.org/10.5281/zenodo.18402099"><img src="https://img.shields.io/badge/Zenodo-10.5281%2Fzenodo.18402099-blue" alt="Zenodo DOI"></a> <a href="https://graph.openaire.eu/docs/"><img src="https://img.shields.io/badge/docs-OpenAIRE%20Graph-informational" alt="OpenAIRE Graph Docs"></a> <img src="https://img.shields.io/badge/license-CC--BY--4.0-green" alt="License"> </div>
📚 Compact OpenAIRE Citation Graph
<!-- BASED-ON:START --> Based on OpenAIRE Graph v11.1.1 ([source on Zenodo](https://zenodo.org/records/20428976)). <!-- BASED-ON:END -->
The complete OpenAIRE citation graph, distilled into a handful of compact, analysis-ready files — the full scholarly citation network of the open-science ecosystem, small enough to actually work with.
Citation graphs at this scale are usually locked behind multi-terabyte dumps and heavyweight infrastructure. This dataset makes the entire OpenAIRE citation network loadable on a normal machine: publications as nodes, citations as edges, served as compressed Parquet with a memory-efficient loading path. A richer node file adds titles, abstracts, authors, dates, and a full set of persistent identifiers (DOI, PubMed, MAG, arXiv, and more) for text-attributed and metadata-driven work.
Please cite the paper if you use this data.
At a glance
Dataset structure
The dataset is a directed citation graph: publications are nodes, citations are edges.
Features/columns in publications_large
Quickstart
import pandas as pd
from huggingface_hub import hf_hub_download
REPO = "Zmeos/Compact_OpenAIRE_citation_graph"
# citations (edges)
cites = pd.read_parquet(
hf_hub_download(REPO, "citations.parquet", repo_type="dataset"),
engine="pyarrow", dtype_backend="pyarrow",
)
# publications_large (nodes + metadata) — may not fit in memory;
# select only the columns you need
large = pd.read_parquet(
hf_hub_download(REPO, "publications_large.parquet", repo_type="dataset"),
columns=["nodeId", "title", "pid_dois"],
engine="pyarrow", dtype_backend="pyarrow",
)Reproducibility
The PySpark pipeline used to produce these files (with a Singularity/Apptainer container for portability) is archived on Zenodo as pipeline.tar.xz and maintained at Codeberg.
License
Creative Commons Attribution 4.0 International (CC-BY-4.0).
Citation (paper)
When using this dataset, please cite the accompanying article:
Skarding, J. and Sanda, P. (2026) 'Making the Complete OpenAIRE Citation Graph Easily Accessible Through Compact Data Representation', Journal of Open Humanities Data, 12(1), p. 63. https://doi.org/10.5334/johd.520
@article{skarding2026openaire,
author = {Skarding, Joakim and Sanda, Pavel},
title = {Making the Complete OpenAIRE Citation Graph Easily Accessible Through Compact Data Representation},
journal = {Journal of Open Humanities Data},
volume = {12},
number = {1},
pages = {63},
year = {2026},
doi = {10.5334/johd.520}
}Dataset archive: Skarding, J. and Sanda, P. (2026). Compact representation of the OpenAIRE citation graph [Data set]. Zenodo. https://doi.org/10.5281/zenodo.18402099 ---
