browseEnv(utils)
browseEnv()所属R语言包:utils
Browse Objects in Environment
浏览环境中的对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The browseEnv function opens a browser with list of objects currently in sys.frame() environment.
函数打开browseEnv对象列表的浏览器目前在sys.frame()环境。
用法----------Usage----------
browseEnv(envir = .GlobalEnv, pattern,
excludepatt = "^last\\.warning",
html = .Platform$OS.type != "mac",
expanded = TRUE, properties = NULL,
main = NULL, debugMe = FALSE)
参数----------Arguments----------
参数:envir
an environment the objects of which are to be browsed.
environment其中的对象都可以浏览。
参数:pattern
a regular expression for object subselection is passed to the internal ls() call.
为对象的部分选定的正则表达式传递给内部ls()呼叫。
参数:excludepatt
a regular expression for dropping objects with matching names.
正则表达式的名称相匹配的对象为下降。
参数:html
is used on non Macintosh machines to display the workspace on a HTML page in your favorite browser.
用于非Macintosh计算机上,在您最喜爱的浏览器的HTML页面上显示的工作区。
参数:expanded
whether to show one level of recursion. It can be useful to switch it to FALSE if your workspace is large. This option is ignored if html is set to FALSE.
是否显示一个级别的递归。它可以是有用的切换FALSE如果您的工作空间是很大的。如果html设置为FALSE,则忽略此选项。
参数:properties
a named list of global properties (of the objects chosen) to be showed in the browser; when NULL (as per default), user, date, and machine information is used.
命名的全局属性(选择对象)列表显示在浏览器中,当NULL(按默认),用户,日期,和机器的信息用于。
参数:main
a title string to be used in the browser; when NULL (as per default) a title is constructed.
要在浏览器中使用;当NULL(默认为标题)构造一个标题字符串。
参数:debugMe
logical switch; if true, some diagnostic output is produced.
逻辑开关,如果属实,产生一些诊断输出。
Details
详情----------Details----------
Very experimental code. Only allows one level of recursion into object structures. The HTML version is not dynamic.
很实验的代码。只允许一个递归级别为对象的结构。 HTML的版本是不是动态的。
It can be generalized. See sources ("..../library/base/R/databrowser.R") for details.
它可以是广义的。详情请参阅源(“..../library/base/R/databrowser.R)。
wsbrowser() is currently just an internally used function; its argument list will certainly change.
wsbrowser()目前只是一个内部使用的功能,它的参数列表一定会改变。
Most probably, this should rather work through using the "tkWidget" package (from www.Bioconductor.org).
最有可能,而应努力通过使用“tkWidget包(从www.Bioconductor.org)。
参见----------See Also----------
str, ls.
str,ls。
举例----------Examples----------
if(interactive()) {
## create some interesting objects :[#创建一些有趣的对象:]
ofa <- ordered(4:1)
ex1 <- expression(1+ 0:9)
ex3 <- expression(u,v, 1+ 0:9)
example(factor, echo = FALSE)
example(table, echo = FALSE)
example(ftable, echo = FALSE)
example(lm, echo = FALSE, ask = FALSE)
example(str, echo = FALSE)
## and browse them:[#和浏览他们:]
browseEnv()
## a (simple) function's environment:[#(简单)函数的环境:]
af12 <- approxfun(1:2, 1:2, method = "const")
browseEnv(envir = environment(af12))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|