Skip to content

Reference to cite stats package

3 messages · Iriel Joerin, Enrico Schumann, John Kane

#
Hi,
I?m using the R package stats for some analysis, I would like to know if
there is any special reference paper to cite this package or just the R
paper itself.
Thank you very much for your answer,
Iriel Joerin
#
On Wed, 28 Oct 2020, Iriel Joerin writes:
citation(package = "stats")

## The ?stats? package is part of R.  To cite R in publications use:
## 
##   R Core Team (2020). R: A language and environment for statistical
##   computing. R Foundation for Statistical Computing, Vienna, Austria.
##   URL 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 = {2020},
##     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.

kind regards
    Enrico
#
citation("packagename")


citation("lubridate")

==============================
To cite lubridate in publications use:

  Garrett Grolemund, Hadley Wickham (2011). Dates and Times Made
  Easy with lubridate. Journal of Statistical Software, 40(3),
  1-25. URL http://www.jstatsoft.org/v40/i03/.

A BibTeX entry for LaTeX users is

  @Article{,
    title = {Dates and Times Made Easy with {lubridate}},
    author = {Garrett Grolemund and Hadley Wickham},
    journal = {Journal of Statistical Software},
    year = {2011},
    volume = {40},
    number = {3},
    pages = {1--25},
    url = {http://www.jstatsoft.org/v40/i03/},
  }

==========================================================
On Wed, 28 Oct 2020 at 11:07, Iriel Joerin <irieljoerin at gmail.com> wrote: