1.13 Citing R
Many people have invested huge amounts of time and energy making R the great piece of software you’re now using. If you use R in your work (and we hope you do) please remember to give appropriate credit by citing R. To get the most up to date citation for R you can use the citation() function.
citation()
## To cite R in publications use:
##
## R Core Team (2025). _R: A Language and Environment for Statistical Computing_. R Foundation for Statistical
## Computing, Vienna, Austria. <https://www.R-project.org/>.
##
## A BibTeX entry for LaTeX users is
##
## @Manual{,
## title = {R: A Language and Environment for Statistical Computing},
## author = {{R Core Team}},
## organization = {R Foundation for Statistical Computing},
## address = {Vienna, Austria},
## year = {2025},
## url = {https://www.R-project.org/},
## }
##
## We have invested a lot of time and effort in creating R, please cite it when using it for data analysis. See also
## 'citation("pkgname")' for citing R packages.If you want to cite a particular package you’ve used for your data analysis.
citation(package = "here")
## To cite package 'here' in publications use:
##
## Müller K (2025). _here: A Simpler Way to Find Your Files_. doi:10.32614/CRAN.package.here
## <https://doi.org/10.32614/CRAN.package.here>, R package version 1.0.2, <https://CRAN.R-project.org/package=here>.
##
## A BibTeX entry for LaTeX users is
##
## @Manual{,
## title = {here: A Simpler Way to Find Your Files},
## author = {Kirill Müller},
## year = {2025},
## note = {R package version 1.0.2},
## url = {https://CRAN.R-project.org/package=here},
## doi = {10.32614/CRAN.package.here},
## }