putAlternativesAffectationsWithValues: Puts alternative affectations with values

Description Usage Arguments Value Examples

Description

Puts alternative affectations as an <alternativesAffectations> tag in an XML tree written according to the XMCDA standard.

Usage

1
2
putAlternativesAffectationsWithValues(tree, alternativesAffectations,
        alternativesIDs, categoriesIDs, mcdaConcept = NULL)

Arguments

tree

Object containing the XMCDA XML tree.

alternativesAffectations

An n x 3 matrix representing <alternativesAffectations>, where n is the number of alternative affectations to write. Each row [i, ] of the matrix represents affectation of [i, 1]-th alternative to [i, 2]-th category with value [i, 3].

alternativesIDs

A vector containing the IDs of the alternatives to be considered for the extractions.

categoriesIDs

A vector containing the IDs of the categories to be considered for the extractions.

mcdaConcept

A string containing the specific mcdaConcept attribute which should be searched for.

Value

The function returns a list structured as follows:

status

Either OK if all the <alternativesAffectations> tags could be correctly put, or the description of the error.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
alternativesIDs <-  c("a01", "a02", "a03", "a04")
categoriesIDs <- c("c01", "c02", "c03")
altAff = rbind(c(1, 2, 0.1),
      c(1, 3, 0.0),
      c(2, 3, 1.0),
      c(4, 1, 0.5))

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)
     
putAlternativesAffectationsWithValues(tree, altAff, alternativesIDs, categoriesIDs)

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