LoginSignup
9
7

More than 5 years have passed since last update.

Rのパッケージを論文に引用する

Last updated at Posted at 2015-12-11

CITATIONが用意されている場合は、citation() 関数を使うと引用すべき文献が表示されます。

r
> library(lme4)
> citation("lme4")

To cite lme4 in publications use:

  Douglas Bates, Martin Maechler, Ben Bolker, Steve Walker (2015). Fitting Linear Mixed-Effects
  Models Using lme4. Journal of Statistical Software, 67(1), 1-48. doi:10.18637/jss.v067.i01.

A BibTeX entry for LaTeX users is

  @Article{,
    title = {Fitting Linear Mixed-Effects Models Using {lme4}},
    author = {Douglas Bates and Martin M{\"a}chler and Ben Bolker and Steve Walker},
    journal = {Journal of Statistical Software},
    year = {2015},
    volume = {67},
    number = {1},
    pages = {1--48},
    doi = {10.18637/jss.v067.i01},
  }

逆に、このような引用情報を自作のパッケージに含めたい場合は、/inst フォルダ以下にCITATIONファイルを作るとよいでしょう。

cf. https://github.com/lme4/lme4/blob/master/inst/CITATION
https://cran.r-project.org/doc/manuals/R-exts.html#CITATION-files

9
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
7