names.XMLNode(XML)
names.XMLNode()所属R语言包:XML
Get the names of an XML nodes children.
获取一个XML节点的孩子的名字。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a convenient way to obtain the XML tag name of each of the sub-nodes of a given XMLNode object.
这是一个方便的方法来获得一个给定的XMLNode对象的每个子节点的XML标记名称。
用法----------Usage----------
## S3 method for class 'XMLNode'
names(x)
参数----------Arguments----------
参数:x
the XMLNode whose sub-node tag names are being queried.
XMLNode其子节点的标记名称受到质疑。
值----------Value----------
A character vector returning the tag names of the sub-nodes of the given XMLNode argument.
字符向量的XMLNode参数的子节点返回的标记名称。
注意----------Note----------
This overrides the regular names method which would display the names of the internal fields of an XMLNode object. Since these are intended to be invisible and queried via the accessor methods (xmlName, xmlAttrs, etc.), this should not be a problem. If you really need the names of the fields, use names(unclass(x)).
这将覆盖正规名称的方法,将显示的XMLNode对象的内部字段的名字。因为这些是不可见的,并询问通过存取方法(xmlName,xmlAttrs,等等),这不应该是一个问题。如果你真的需要的字段的名称,使用names(unclass(x))。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
xmlApply xmlSApply
xmlApplyxmlSApply
实例----------Examples----------
doc <- xmlTreeParse(system.file("exampleData", "mtcars.xml", package="XML"))
names(xmlRoot(doc))
r <- xmlRoot(doc)
r[names(r) == "variables"]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|