show.envs(track)
show.envs()所属R语言包:track
Show the environments referenced within an object.
对象引用的环境。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
show.envs recursively examines x and the objects within it, printing the names of any environments encountered. It does NOT recursively enter environments – once it finds an environment it just prints the name of that environment and doesn't look further inside the environment.
show.envs递归检查x和对象的,印刷的名称所遇到的任何环境。它不递归进入环境 - 一旦你发现它只是打印的环境,环境的名称,不看里面的环境进一步。
用法----------Usage----------
show.envs(x, obj = substitute(x))
参数----------Arguments----------
参数:x
The object to examine.
检查的对象。
参数:obj
An expression describing the object. Not intended to be supplied by the user.
描述该对象的一个表达式。不适合在由用户提供的。
Details
详细信息----------Details----------
show.envs attemps to show the environments referenced within an object, but it may miss some. If you encounter any such cases, please email them to tplate@acm.org.
show.envs借以显示在一个对象中引用的环境,但它可能会错过一些。如果您遇到任何这种情况下,请电子邮件发送给tplate@acm.org。
值----------Value----------
The number of environments encountered.
遇到的环境中的数量。
(作者)----------Author(s)----------
Tony Plate <a href="mailto:tplate@acm.org">tplate@acm.org</a>.
实例----------Examples----------
x <- data.frame(a=1:10, b=10:1)
m <- lm(a ~ b, data=x)
show.envs(m)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|