*disclaimer
758416
citation()
- Rおよびパッケージの引用情報の出力
何も指定せずにそのまま実行するとRについて出力される
To cite R in publications use: R Core Team (2023). _R: A Language and Environment for Statistical Computing_. R Foundation for Statistical Computing, Vienna, Austria. <https://www.R-project.org/>. LaTeX ユーザのための BibTeX エントリーは @Manual{, title = {R: A Language and Environment for Statistical Computing}, author = {{R Core Team}}, organization = {R Foundation for Statistical Computing}, address = {Vienna, Austria}, year = {2023}, 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.
引用したいパッケージの情報がほしい場合は引用符付きで指定する
citation("fitdistrplus") To cite fitdistrplus in publications use: Marie Laure Delignette-Muller, Christophe Dutang (2015). fitdistrplus: An R Package for Fitting Distributions. Journal of Statistical Software, 64(4), 1-34. DOI 10.18637/jss.v064.i04. LaTeX ユーザのための BibTeX エントリーは @Article{, title = {{fitdistrplus}: An {R} Package for Fitting Distributions}, author = {Marie Laure Delignette-Muller and Christophe Dutang}, journal = {Journal of Statistical Software}, year = {2015}, volume = {64}, number = {4}, pages = {1--34}, doi = {10.18637/jss.v064.i04}, } Please cite both the package and R when using them for data analysis. See also ‘citation()’ for citing R.
https://sugiura-ken.org/wiki/