getAlternativesIntervalValues(RXMCDA)
getAlternativesIntervalValues()所属R语言包:RXMCDA
Get interval values related to alternatives
间隔值替代品有关的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Gets intervals of values related to alternatives, stored in the <alternativesValues> tag, from an XML tree written according to the XMCDA standard.
获取的时间间隔的值有关的替代方案,存储在<alternativesValues>标签,从根据XMCDA标准编写的XML树。
用法----------Usage----------
getAlternativesIntervalValues(tree, alternativesIDs, mcdaConcept = NULL)
参数----------Arguments----------
参数:tree
Object containing the XMCDA XML tree.
Object,包含XMCDAXML树。
参数:alternativesIDs
A vector containing the IDs of the alternatives to be considered for the extractions.
提取被认为是一个向量,包含的ID的替代品。
参数:mcdaConcept
A string containing the specific mcdaConcept attribute which should be searched for.
一个字符串,其中包含的具体mcdaConcept属性应搜索。
值----------Value----------
The function returns a list structured as follows:
该函数返回一个列表结构如下:
参数:–
The first elements contain matrices representing each an <alternativesValues>. Each line of each matrix corresponds to an element of the type "the interval of values assigned to alternative a is [x,y]". A line is structured as follows: the first element encodes the index of the ID of alternative a in alternativesIDs, the second element encodes the value x, and the last element encodes the value y. These elements are named according to the mcdaConcept attribute if it can be found.
第一个元素包含矩阵的每一个<alternativesValues>。每个矩阵的每一行对应于一个元素的类型“的值的时间间隔分配给替代为[的x,]”。 A线的结构如下:第一个元素编码的索引的ID替代a在alternativesIDs,第二个元素x的值进行编码,并在最后一个元素编码的值y。这些元素的命名是根据mcdaConcept属性,如果可以找到。
参数:status
Either OK if all the <alternativesValues> tags could be correctly read, or the description of the error.
无论是OK的,如果所有的<alternativesValues>标签可以正确读出,或对错误的描述。
实例----------Examples----------
tree <- xmlTreeParse(system.file("extdata","testFile.xml",package="RXMCDA"), useInternalNodes=TRUE)
altIDs <- getAlternativesIDs(tree)
altVals <- getAlternativesIntervalValues(tree, altIDs[[1]], mcdaConcept="alternativesIntervalValues")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|