page(utils)
page()所属R语言包:utils
Invoke a Pager on an R Object
R对象上调用寻呼机
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Displays a representation of the object named by x in a pager via file.show.
显示命名寻呼机通过xfile.show对象的代表性。
用法----------Usage----------
page(x, method = c("dput", "print"), ...)
参数----------Arguments----------
参数:x
An R object, or a character string naming an object.
一个R对象,或一个字符串,命名对象。
参数:method
The default method is to dump the object via dput. An alternative is to use print and capture the output to be shown in the pager.
默认的方法是通过dput倾倒的对象。另一种方法是使用print和捕捉的输出将显示在寻呼机。
参数:...
additional arguments for dput, print or file.show (such as title).
额外的参数(如dputprint,file.show或title)。
Details
详情----------Details----------
If x is a length-one character vector, it is used as the name of an object to look up in the environment from which page is called. All other objects are displayed directly.
如果x是一个长度为一个字符向量,它作为一个对象的名称查找在从page被称为环境。所有其他的对象是直接显示。
A default value of title is passed to file.show if one is not supplied in ....
一个title默认值被传递给file.show如果没有...提供。
参见----------See Also----------
file.show, edit, fix.
file.show,edit,fix。
To go to a new page when graphing, see frame.
去一个新的页面图形时,看到frame。
举例----------Examples----------
page(page) # as an object[作为一个对象]
page("page") # a character string[字符串]
v <- "page"; page(v) # a length-one character vector[长度一个字符向量]
page(utils::page) # a call[通话]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|