找回密码
 注册
查看: 689|回复: 0

R语言 XML包 xmlNamespace()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-2 00:01:49 | 显示全部楼层 |阅读模式
xmlNamespace(XML)
xmlNamespace()所属R语言包:XML

                                        Retrieve the namespace value of an XML node.
                                         检索的命名空间的XML节点的值。

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Each XML node has a namespace identifier which is a string indicating in which DTD (Document Type Definition) the definition of that element can be found.  This avoids the problem of having different document definitions using the same names for XML elements that have different meaning. To resolve the name space, i.e.  i.e. find out to where the identifier points, one can use the expression xmlNamespace(xmlRoot(doc)).
每个XML节点的命名空间标识符,它是一个字符串,表示在DTD(文档类型定义)的定义,该元素可以找到。这就避免了使用相同的XML元素名称有不同的含义有不同的文件中定义的问题。要解决的名称空间,ieie发现的标识符点的地方,可以使用的表达xmlNamespace(xmlRoot(doc))。

The class of the result is is an S3-style object of class XMLNamespace.
类的结果是S3风格的对象的类XMLNamespace。


用法----------Usage----------


xmlNamespace(x)
xmlNamespace(x, ...) <- value



参数----------Arguments----------

参数:x
the object whose namespace is to be computed
要计算的对象,该对象的命名空间


参数:value
the prefix for a namespace that is defined in the node or any of the ancestors.
前缀的命名空间中定义的节点或祖先。


参数:...
additional arguments for setting the name space
额外的参数设置的名称空间


值----------Value----------

For non-root nodes, this returns a string giving the identifier of the name space for this node. For the root node, this returns a list with 2 elements:
对于非根节点,它返回一个字符串,给出这个节点的标识符的名称空间。为根节点,返回一个列表,包含两个元素:


参数:id
the identifier by which other nodes refer to this namespace.
标识符的其他节点是指这个命名空间。


参数:uri
the URI or location that defines this namespace.
定义这个命名空间的URI或位置。


参数:local
? (can't remember off-hand).
? (不记得了手)。


(作者)----------Author(s)----------


Duncan Temple Lang



参考文献----------References----------



参见----------See Also----------

xmlName xmlChildren xmlAttrs xmlValue xmlNamespaceDefinitions
xmlNamexmlChildrenxmlAttrsxmlValuexmlNamespaceDefinitions


实例----------Examples----------


  doc <- xmlTreeParse(system.file("exampleData", "job.xml", package="XML"))
  xmlNamespace(xmlRoot(doc))
  xmlNamespace(xmlRoot(doc)[[1]][[1]])


  doc <- xmlInternalTreeParse(system.file("exampleData", "job.xml", package="XML"))
     # Since the first node, xmlRoot() will skip that, by default.[由于在第一个节点中,xmlRoot()将跳过的是,默认情况下。]
  xmlNamespace(xmlRoot(doc))
  xmlNamespace(xmlRoot(doc)[[1]][[1]])

  node <- xmlNode("arg", xmlNode("name", "foo"), namespace="R")
  xmlNamespace(node)


   doc = xmlParse('<top xmlns:r="http://www.r-project.org"><bob><code>a = 1:10</code></bob></top>')
   node = xmlRoot(doc)[[1]][[1]]
   xmlNamespace(node) = "r"
   node


   doc = xmlParse('<top xmlns:r="http://www.r-project.org"><bob><code>a = 1:10</code></bob></top>')
   node = xmlRoot(doc)[[1]][[1]]
   xmlNamespaces(node, set = TRUE) = c(omg = "http://www.omegahat.org")
   node

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-24 15:37 , Processed in 0.020642 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表