Last.value(base)
Last.value()所属R语言包:base
Value of Last Evaluated Expression
最后一个表达式的值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The value of the internal evaluation of a top-level R expression is always assigned to .Last.value (in package:base) before further processing (e.g., printing).
的顶级R表达的内部评估的价值总是被分配到.Last.value(在package:base)前进一步的处理(例如,印刷)。
用法----------Usage----------
.Last.value
Details
详情----------Details----------
The value of a top-level assignment is put in .Last.value, unlike S.
顶级分配的值是.Last.value,不像S。
Do not assign to .Last.value in the workspace, because this will always mask the object of the same name in package:base.
不分配到.Last.value在工作区,因为这将始终掩盖package:base相同的名称的对象。
参见----------See Also----------
eval
eval
举例----------Examples----------
## These will not work correctly from example(),[#这将无法正常工作(例如)]
## but they will in make check or if pasted in,[#但他们将在支票或者粘贴,]
## as example() does not run them at the top level[#(例如)不执行他们在顶层]
gamma(1:15) # think of some intensive calculation...[想到一些密集的计算...]
fac14 <- .Last.value # keep them[让他们]
library("splines") # returns invisibly[返回无形]
.Last.value # shows what library(.) above returned[显示库(。)以上返回]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|