Como citar o R em meus trabalhos?

Você terminou o seu trabalho e precisa citar qual a versão do R utilizou.

Para saber a versão do R, basta utilizar o comando abaixo:

version

Resultado:

platform aarch64-apple-darwin20
arch aarch64
os darwin20
system aarch64, darwin20
status
major 4
minor 4.0
year 2024
month 04
day 24
svn rev 86474
language R
version.string R version 4.4.0 (2024-04-24)
nickname Puppy Cup

Para saber como citar a versão do R e ainda receber a entrada BibTeX para uso no LaTeX, basta utilizar o seguinte comando:

citation()

O resultado será:

To cite R in publications use:
R Core Team (2024). 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 = {2024},
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.

E se eu quiser citar algum pacote específico (valorize o trabalho da comunidade!)?

citation(package="NOME DO PACOTE")

Para o pacote minpack.lm, por exemplo:

citation(package = "minpack.lm")

Resultado:

To cite package ‘minpack.lm’ in publications use:
Elzhov TV, Mullen KM, Spiess A, Bolker B (2023). minpack.lm: R Interface to the Levenberg-Marquardt Nonlinear Least-Squares Algorithm Found in MINPACK, Plus Support for Bounds. R package version 1.2-4,
https://CRAN.R-project.org/package=minpack.lm.
A BibTeX entry for LaTeX users is
@Manual{,
title = {minpack.lm: R Interface to the Levenberg-Marquardt Nonlinear Least-Squares
Algorithm Found in MINPACK, Plus Support for Bounds},
author = {Timur V. Elzhov and Katharine M. Mullen and Andrej-Nikolai Spiess and Ben Bolker},
year = {2023},
note = {R package version 1.2-4},
url = {https://CRAN.R-project.org/package=minpack.lm},
}
ATTENTION: This citation information has been auto-generated from the
package DESCRIPTION file and may need manual editing, see
‘help(“citation”)’.

Um exemplo

Em artigo publicado por Moura e colaboradores na Brazilian Journal of Chemical Engineering, o R foi utilizado para os cálculos, análises estatísticas, modelagens e gráficos. Os autores fizeram referência ao R no tópico Material e Métodos como descrito abaixo.

The calculations and the statistical analysis were performed with R 3.3.0 (R Core Team, 2016).

E nas referências bibliográficas…

R Core Team (2016). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna. Avaliable in: <https://www.R-project.org> (Accessed on June 10, 2016).

Observação:

  • Publicado originalmente no Medium.