putCriterionValue: Put a value related to a criterion

Description Usage Arguments Value Examples

View source: R/libxmcda.R

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.

Usage

1
2
putCriterionValue(tree, criterionValue, criteriaIDs = NULL, 
                  mcdaConcept = NULL)

Arguments

tree

Object containing the XMCDA XML tree.

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.

mcdaConcept

A string containing the specific mcdaConcept attribute which should be written.

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.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
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)

RXMCDA documentation built on May 1, 2019, 10:23 p.m.