toHTML(XML)
toHTML()所属R语言包:XML
Create an HTML representation of the given R object, using
创建一个HTML表示给定的R对象,
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This generic function and the associated methods are intended to create an HTML tree that represents the R object in some intelligent manner. For example, we represent a vector as a table and we represent a matrix also as a table.
这个通用的功能和相关方法的目的是创建一个HTML树,表示R对象,一些聪明的方式。例如,我们所代表的一个向量作为一个表,我们也作为一个表代表一个矩阵。
用法----------Usage----------
toHTML(x, context = NULL)
参数----------Arguments----------
参数:x
the R object which is to be represented via an HTML tree
这是要通过HTML树表示的R对象
参数:context
an object which provides context in which the node will be used. This is currently arbitrary. It may be used, for example, when creating HTML for R documentation and providing information about variabes and functions that are available on that page and so have internal links.
一个对象,它提供了将被使用,其中该节点的上下文。这是任意的。它可以用于,例如,当创建HTML R文档和提供有关下列内容的信息变中,可在该网页上的函数,这些函数等具有内部链接。
Details
详细信息----------Details----------
It would be nicer if we could pass additional arguments to control whether the outer/parent layer is created, e.g. when reusing code for a vector for a row of a matrix.
这将是更好的,如果我们可以通过额外的参数来控制外/父层是否被创建,例如:当重用代码的矢量矩阵的行。
值----------Value----------
an object of class XMLInternalNode
一个对象的类XMLInternalNode
(作者)----------Author(s)----------
Duncan Temple Lang
参见----------See Also----------
The R2HTML package.
R2HTML包。
实例----------Examples----------
cat(as(toHTML(rnorm(10)), "character"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|