readSolrDoc(XML)
readSolrDoc()所属R语言包:XML
Read the data from a Solr document
从Solr文档中读取数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Solr documents are used to represent general data in a reasonably simple format made up of lists, integers, logicals, longs, doubles, dates, etc. each with an optional name. These correspond very naturally to R objects.
Solr的文件是用来表示一般的数据在一个相当简单的格式的列表,整数,逻辑性,长材,双打,日期等每一个可选的名字。这很自然地对应到R对象。
用法----------Usage----------
readSolrDoc(doc, ...)
参数----------Arguments----------
参数:doc
the object containing the data. This can be the name of a file, a parsed XML document or an XML node.
的对象,其中包含的数据。这可能是一个文件,解析XML文档或XML节点的名称。
参数:...
additional parameters for the methods.
的方法的附加参数。
值----------Value----------
An R object representing the data in the Solr document, typically a named vector or named list.
R对象代表的数据在Solr的文件,通常是命名的矢量或命名列表。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
readKeyValueDB, xmlToList, xmlToDataFrame, xmlParse
readKeyValueDB,xmlToList,xmlToDataFrame,xmlParse
实例----------Examples----------
f = system.file("exampleData", "solr.xml", package = "XML")
readSolrDoc(f)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|