R引用哪一年引用?

时间:2013-01-26 10:08:42

标签: r citations

大部分时间我的R版本和软件包都是合理的最新版本。现在我想知道在使用citation("somepackage")时要引用的年份。基本上所有套餐都是2012年。我怎样才能找到他们第一次出现时的真实日期?或者我应该引用最新版本?

2 个答案:

答案 0 :(得分:6)

医学领域的规范似乎是在文中引用这样的东西:

We used Stata version 9.2 (Stata Corporation, East Nowhere, Texas, 2006).

该规范主张引用您实际使用的版本的年份。而且,在我看来,如果您希望后续作者能够复制您的结果,那将是有意义的。

有一个完整的新兴领域正试图弄清楚如何引用除纸张之外的其他事物(例如,参见Heather Piwowar's work)。如果你想要的R版本上有 Journal of Statistical Software 文章(更有可能是包而不是基础R),你可以引用它。或者引用相关版本的 R Journal 更新。

答案 1 :(得分:4)

为什么没有人提到明显的? R本身有一个citation()命令:

edd@max:~$ R --silent -e 'citation()'
R> citation()

To cite R in publications use:

  R Core Team (2012). R: A language and environment for statistical computing. 
  R Foundation for Statistical Computing, Vienna, Austria.
  ISBN 3-900051-07-0, URL http://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 = {2012},
    note = {{ISBN} 3-900051-07-0},
    url = {http://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.

R> 
R> 
edd@max:~$