isR(base)
isR()所属R语言包:base
Are we using R, rather than S?
我们使用R,而不是比S?
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Test if running under R.
测试运行,如果在河
用法----------Usage----------
is.R()
Details
详情----------Details----------
The function has been written such as to correctly run in all versions of R, S and S-PLUS. In order for code to be runnable in both R and S dialects previous to S-PLUS 8.0, your code must either define is.R or use it as
如正确地运行在所有版本的R,S和S-PLUS中的功能已被写入。为了的代码是运行的R和S,S-PLUS 8.0以前的方言,你的代码必须定义is.R或用它作为
if (exists("is.R") && is.function(is.R) && is.R()) {<br> ## R-specific code<br> } else {<br> ## S-version of code<br> }
if (exists("is.R") && is.function(is.R) && is.R()) {参考#R - 具体代码参考} else {参考##S版代码参考}
值----------Value----------
is.R returns TRUE if we are using R and FALSE otherwise.
is.R返回TRUE如果我们使用R和FALSE否则。
参见----------See Also----------
R.version, system.
R.version,system。
举例----------Examples----------
x <- stats::runif(20); small <- x < 0.4
## In the early years of R, 'which()' only existed in R:[#R,(),只有在R存在早年:]
if(is.R()) which(small) else seq(along=small)[small]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|