Learn R Programming

RXMCDA (version 1.5.5)

putAlternativesAffectationsWithValues: Puts alternative affectations with values

Description

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

Usage

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

Arguments

tree
Object containing the XMCDA XML tree.
alternativesAffectations
An n x 3 matrix representing , 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 tags could be correctly put, or the description of the error.

Examples

Run this code
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)

Run the code above in your browser using DataLab