統計ER

R, EZR, SPSS, KH Coder を使ったデータ分析方法を紹介するブログ。ニッチな内容が多め

R の引用の書き方

R の引用情報を参考文献リストに載せたい。

どのように記載すればよいか?

>>もう統計で悩むのを終わりにしませんか?


↑1万人以上の医療従事者が購読中

R の引用情報の取得方法

コンソールで citation() と書いてエンター。

引用の際の情報が出てくる。

例:

To cite R in publications use:

  R Core Team (2018). R: A language and environment for statistical
  computing. R Foundation for Statistical Computing, Vienna, Austria. URL
  https://www.R-project.org/.

BibTeXを使っているなら以下を利用。

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 = {2018},
    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() のカッコ内にダブルクォーテーションで挟んでパッケージ名を記入してエンター。

例:

> citation("pROC")

If you use pROC in published research, please cite the following paper:

  Xavier Robin, Natacha Turck, Alexandre Hainard, Natalia Tiberti,
  Frederique Lisacek, Jean-Charles Sanchez and Markus Muller (2011). pROC:
  an open-source package for R and S+ to analyze and compare ROC curves.
  BMC Bioinformatics, 12, p. 77.  DOI: 10.1186/1471-2105-12-77
  <http://www.biomedcentral.com/1471-2105/12/77/>

A BibTeX entry for LaTeX users is

  @Article{,
    title = {pROC: an open-source package for R and S+ to analyze and compare ROC curves},
    author = {Xavier Robin and Natacha Turck and Alexandre Hainard and Natalia Tiberti and Frederique Lisacek and Jean-Charles Sanchez and Markus Muller},
    year = {2011},
    journal = {BMC Bioinformatics},
    volume = {12},
    pages = {77},
  }

The authors would be glad to hear how pROC is employed. You are kindly
encouraged to notify Xavier Robin <pROC-cran@xavier.robin.name> about any
work you publish.

>>もう統計で悩むのを終わりにしませんか?


↑1万人以上の医療従事者が購読中

まとめ

R の引用情報を得るには、citation()

パッケージの名前を入れれば、パッケージの引用情報も得られる。

参考になれば。