putCriterionValue(RXMCDA)
putCriterionValue()所属R语言包:RXMCDA
Put a value related to a criterion
把一个值相关的一个标准
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Puts a value related to a criterion (or a set of criteria) as a criterionValue tag in an XML tree written according to the XMCDA standard.
将相关的值(或一组标准)的标准作为一个criterionValue标签根据XMCDA标准的写在XML树。
用法----------Usage----------
putCriterionValue(tree, criterionValue, criteriaIDs = NULL, mcdaConcept = NULL)
参数----------Arguments----------
参数:tree
Object containing the XMCDA XML tree.
Object,包含XMCDAXML树。
参数:criterionValue
A float representing the value assigned to the criterion.
一个浮动的价值分配的标准。
参数:criteriaIDs
A string representing the criterion's ID or a vector representing a set of criteria IDs.
一个字符串,表示标准的ID或向量表示一组标准的ID。
参数:mcdaConcept
A string containing the specific mcdaConcept attribute which should be written.
一个字符串,其中包含的具体mcdaConcept属性应该写入。
值----------Value----------
The function returns a list structured as follows:
该函数返回一个列表结构如下:
参数:status
Either OK if all the <criterionValue> tags could be correctly put, or the description of the error.
无论是OK的,如果所有的<criterionValue>标签可以正确地说,或对错误的描述。
实例----------Examples----------
critID <- c("x")
tree = newXMLDoc()
newXMLNode("xmcda:XMCDA", namespace = c("xsi" = "http://www.w3.org/2001/XMLSchema-instance", "xmcda" = "http://www.decision-deck.org/2009/XMCDA-2.1.0"), parent=tree)
putCriterionValue(tree,0.8,criteriaIDs = critID)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|