Last data update: 2014.03.03

R: The 'mtkDesignerResult' class
mtkDesignerResult-classR Documentation

The mtkDesignerResult class

Description

A class to collect the experimental design produced by an experiments design process.

Class Hierarchy

Parent classes :

mtkResult

Direct Known Subclasses :

mtkSobolDesignerResult, mtkMorrisDesignerResult, etc.

Constructor

mtkDesignerResult

signature(main=data.frame(),information=list())

Slots

main:

(data.frame) a data.frame holding the experimental design produced by the process.

information:

(list) a named list containing optional information about the experiments design.

Methods

summary

signature(object = "mtkDesignerResult"): Provides a summary of the experimental design produced by the design process.

print

signature(x = "mtkDesignerResult"): Prints a report of the experimental design produced by the design process.

plot

signature(x = "mtkDesignerResult"): Plots the experimental design produced by the design process.

Author(s)

Juhui WANG, MIA-Jouy, Inra, Juhui.Wang@jouy.inra.fr

References

J. Wang, H. Richard, R. Faivre, H. Monod (2013). Le package mtk, une biblioth<c3><83><c2><a8>que R pour l'exploration num<c3><83><c2><a9>rique des mod<c3><83><c2><a8>les. In: Analyse de sensibilit<c3><83><c2><a9> et exploration de mod<c3><83><c2><a8>les : Application aux sciences de la nature et de l'environnement (R. Faivre, B. Iooss, S. Mah<c3><83><c2><a9>vas, D. Makowski, H. Monod, Eds). Editions Quae, Versailles.

Examples

# Construct an object of the mtkDesignerResult class from a data-frame.
	data <- data.frame()
	expDesign <- mtkDesignerResult(main=data,
  			information = list(sampling="Fast"))

Results