xmlElementSummary(XML)
xmlElementSummary()所属R语言包:XML
Frequency table of names of elements and attributes in XML content
在XML内容的元素和属性的名字的频率表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function is used to get an understanding of the use of element and attribute names in an XML document. It uses a collection of handler functions to gather the information via a SAX-style parser. The distribution of attribute names is done within each "type" of element (i.e. element name)
这个函数是用来了解一下在一个XML文件中的元素和属性名称的使用。收集的信息,通过SAX风格的解析器,它使用的处理函数的集合。属性名的分布内完成每个“类型”的元件(即元素名称)
用法----------Usage----------
xmlElementSummary(url, handlers = xmlElementSummaryHandlers(url))
参数----------Arguments----------
参数:url
the source of the XML content, e.g. a file, a URL, a compressed file, or a character string
源的XML内容,例如一个文件,URL,一个压缩文件,或一个字符串
参数:handlers
the list of handler functions used to collect the information. These are passed to the function xmlEventParse as the value for the handlers parameter.
处理函数的列表中收集的信息。这些传递给函数的xmlEventParse handlers参数的值。
值----------Value----------
A list with two elements
有两个元素的列表
参数:nodeCounts
a named vector of counts where the names are the (XML namespace qualified) element names in the XML content
一个名为矢量计数的名称是XML命名空间限定的元素名称中的XML内容
参数:attributes
a list with as many elements as there are elements in the nodeCounts element of the result. Each element of this sub-list gives the frequency counts for the different attributes seen within the XML elements with that name.
一样多的元素有在nodeCounts结果元素的元素的列表。此子列表中的每个元素给出了不同的属性使用该名称的XML元素内的频率计数。
(作者)----------Author(s)----------
Duncan Temple Lang
参见----------See Also----------
xmlEventParse
xmlEventParse
实例----------Examples----------
xmlElementSummary(system.file("exampleData", "eurofxref-hist.xml.gz", package = "XML"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|