本文介绍了R“统计"科学论文的引文的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用 R 包stats"(版本 2.15.3)分析了我的数据.一位审阅者问我这个包的正确引用,而不仅仅是常见的
I analyzed my data using R package ‘stats’ (version 2.15.3). A reviewer asked me the right citation of this package and not only the common
R 核心团队 (2012).R:统计计算的语言和环境.R 统计计算基金会,奥地利维也纳.ISBN 3-900051-07-0,网址 http://www.R-project.org/
有人知道我在哪里可以找到有效的引文插入我的论文吗?谢谢
Anyone know where i can find a valid citation to insert in my paper?Thanks
推荐答案
审稿人错了:
citation("stats")
The ‘stats’ package is part of R. To cite R in publications use:
R Core Team (2013). 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 = {2013},
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“统计"科学论文的引文的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!