putPointsCriterionFunction(RXMCDA)
putPointsCriterionFunction()所属R语言包:RXMCDA
Put value functions defined by sets of points
把价值定义的函数由一系列点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Puts value functions defined by sets of points in a criterionFunction tag under the criterion tag in an XML tree written according to the XMCDA standard.
看跌期权的价值定义的函数由一系列点在criterionFunction标签的criterion标准编写的XML树中的下XMCDA标签。
用法----------Usage----------
putPointsCriterionFunction(tree, points, mcdaConcept = NULL)
参数----------Arguments----------
参数:tree
Object containing the XMCDA XML tree.
Object,包含XMCDAXML树。
参数:points
A list, where each element is named by the ID of a criterion, and contains a matrix representing the points (each line is a point, the first column represents the abscissa, the second the ordinate).
的列表,其中每个元素是由一个标准的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 <criterionFunction> tags could be correctly put, or the description of the error.
无论是OK的,如果所有的<criterionFunction>标签可以正确地说,或对错误的描述。
实例----------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.1.0"), parent=tree)
x<-list()
x<-c(x,list(g1=rbind(c(1,2),c(3,4))))
x<-c(x,list(g2=rbind(c(5,6),c(7,8),c(9,10))))
x<-c(x,list(g3=rbind(c(11,12))))
x<-c(x,list(g4=rbind(c(13,14),c(15,16))))
putPointsCriterionFunction(tree,x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|