putAlternativesValues(RXMCDA)
putAlternativesValues()所属R语言包:RXMCDA
Put values related to alternatives
Put值替代品有关
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Puts values related to alternatives as an alternativesValues tag in an XML tree written according to the XMCDA standard.
提出的alternativesValues标准编写的XML树中的相关替代品的XMCDA标签的值。
用法----------Usage----------
putAlternativesValues(tree, alternativesValues, alternativesIDs, mcdaConcept = NULL)
参数----------Arguments----------
参数:tree
Object containing the XMCDA XML tree.
Object,包含XMCDAXML树。
参数:alternativesValues
A matrix containing the values of the alternatives which have to be stored. Each line of this matrix represents a statement of the form "alternative x has value y". The first element of each line stores the index of the alternative x in alternativesIDs, the second element stores the value y.
含A矩阵的替代品,以被存储的值。这个矩阵的每一行代表一个语句的形式为“替代x的值y”。每一行的第一个元素的索引存储在其他的X alternativesIDs,第二个元素中存储的值y。
参数:alternativesIDs
A vector containing the alternatives' IDs.
一个向量的替代品的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 <alternativesValues> tags could be correctly put, or the description of the error.
无论是OK的,如果所有的<alternativesValues>标签可以正确地说,或对错误的描述。
实例----------Examples----------
altIDs <- c("x","y","z")
altVals <- rbind(c(1,1),c(2,0.5),c(3,0.2))
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)
putAlternativesValues(tree,altVals,altIDs)
altVals2 <- getAlternativesValues(tree, altIDs)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|