Skip to contents

Citing Data Sources

Always cite the original data providers when using their data. This is not only required by most data licenses (such as CC-BY), but is also an essential practice in research.

The PRIOGRID package makes citation easy. If your dataset includes PRIOGRID variables that haven’t been renamed, simply use the pgcitations() function to retrieve the appropriate citations for all data sources in your dataset.

variables <- c("hilde_urban", "cru_tmp")
pgcitations(variables)
## ## Package Citation
## 
## Tollefsen AF, Strand H, Buhaug H (2012). "PRIO-GRID: A Unified Spatial
## Data Structure." _Journal of Peace Research_, *49*(2), 363-374.
## doi:10.1177/0022343311431287
## <https://doi.org/10.1177/0022343311431287>.
## 
## Vestby J, Tollefsen AF, Helskog K, Benz G (2025). _priogrid: the
## R-package_. R package version 0.0.0.9000,
## <http://prio-data.github.io/priogrid>.
## 
## 
## Additionally, please cite these data providers:
## (based on these variables: cru_tmp )
## [1] I. Harris, T. J. Osborn, P. Jones, et al. "Version 4 of the CRU TS
## Monthly High-Resolution Gridded Multivariate Climate Dataset". In:
## _Scientific Data_ 7.1 (Apr. 2020), p. 109. ISSN: 2052-4463. DOI:
## 10.1038/s41597-020-0453-3.

By maintaining original variable names and using this function, you ensure proper attribution to all data providers whose work contributes to your research.

You can also just get the biblatex entries using pgcitations(variables, as_biblatex = T).