getParameters(RXMCDA)
getParameters()所属R语言包:RXMCDA
Get parameters
GET参数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Gets the parameters defined in the <methodParameters> tag from an XML tree written according to the XMCDA standard.
获取<methodParameters>标签编写的XML树的XMCDA标准定义的参数。
用法----------Usage----------
getParameters(tree, name = NULL)
参数----------Arguments----------
参数:tree
Object containing the XMCDA XML tree.
Object,包含XMCDAXML树。
参数:name
A string containing the specific name attribute which should be searched for.
一个字符串,其中包含的具体name属性应搜索。
值----------Value----------
The function returns a list structured as follows:
该函数返回一个列表结构如下:
参数:–
The first elements contain the parameters which have been read in each parameter tag (either a <label>, <real> or <integer>). These elements are named according to the name attribute if it can be found.
第一元素包含已被读出的参数,在每个parameter标签(<label>,<real>或<integer>)。这些元素的命名是根据name属性,如果可以找到。
参数:status
Either OK if all the <methodParameters> tags could be correctly read, or the description of the error.
无论是OK的,如果所有的<methodParameters>标签可以正确读出,或对错误的描述。
实例----------Examples----------
tree = newXMLDoc()
newXMLNode("xmcda:XMCDA", namespace = c("xsi" = "http://www.w3.org/2001/XMLSchema-instance", "xmcda" = "http://www.decision-deck.org/2009/XMCDA-2.0.0"), parent=tree)
root<-getNodeSet(tree, "/xmcda:XMCDA")
parameters<-newXMLNode("methodParameters", parent=root[[1]], namespace=c())
parameter <- newXMLNode("parameter",attrs = c(name="numIt"), parent=parameters, namespace=c())
value <- newXMLNode("value", parent=parameter, namespace=c())
newXMLNode("integer", value=3, parent=value, namespace=c())
y<-getNodeSet(tree,"//methodParameters")
x<-getParameters(y[[1]])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|