putAlternativesAffectations: Puts alternative affectations

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
3
putAlternativesAffectations(tree, alternativesAffectations,
        alternativesIDs, categoriesIDs,
        asIntervalsIfPossible = FALSE, mcdaConcept = NULL)

Arguments

tree

Object containing the XMCDA XML tree.

alternativesAffectations

An n x m matrix representing <alternativesAffectations>, where n is number of considered alternatives and m is number of considered categories. Each cell [i, j] of each matrix is boolean and corresponds to encoded relation between i-th alternative and j-th category.

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.

asIntervalsIfPossible

Whether put each affectation as a <categoriesInterval> tag (if possible) or as a <categoriesSet> tag.

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", "c04")
altAff = rbind(c(FALSE, TRUE, TRUE, TRUE),
      c(FALSE, TRUE, FALSE, FALSE),
      c(TRUE, TRUE, TRUE, TRUE),
      c(TRUE, TRUE, TRUE, FALSE))

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

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