Description Usage Arguments Value Details Author(s) References Examples
Places or replaces a process into the workflow.
1 | setProcess(this, p, name)
|
this |
the underlying object of the class |
p |
an object of the class |
name |
a string from "design", "evaluate", or "analyze" to specify the process to place or replace. |
invisble()
This method is especially useful when we need to compare different methods or models.
Juhui WANG, MIA-Jouy, Inra, Juhui.Wang@jouy.inra.fr
J. Wang, H. Richard, R. Faivre, H. Monod (2013). Le package mtk
, une bibliothèque R pour l'exploration numérique des modèles.
In: Analyse de sensibilité et exploration de modèles : Application aux sciences de la nature et de l'environnement
(R. Faivre, B. Iooss, S. Mahévas, D. Makowski, H. Monod, Eds). Editions Quae, Versailles.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | # Analyze the "Ishigami" model with the "Regression" method
x1 <- make.mtkFactor(name="x1", distribName="unif",
distribPara=list(min=-pi, max=pi))
x2 <- make.mtkFactor(name="x2", distribName="unif",
distribPara=list(min=-pi, max=pi))
x3 <- make.mtkFactor(name="x3", distribName="unif",
distribPara=list(min=-pi, max=pi))
ishi.factors <- mtkExpFactors(list(x1,x2,x3))
designer <- mtkNativeDesigner("BasicMonteCarlo",
information=list(size=20))
model <- mtkNativeEvaluator("Ishigami" )
analyser <- mtkNativeAnalyser("Regression", information=list(nboot=20) )
ishiReg <- mtkExpWorkflow( expFactors=ishi.factors,
processesVector=c( design=designer,
evaluate=model,
analyze=analyser)
)
run(ishiReg)
summary(ishiReg)
# Re-analyzes the model "Ishigami" with the method "Morris"
# 1) Build a designer with the method "Morris" and put it into the workflow
morris.designer <- mtkNativeDesigner(
design="Morris",
information=list(r=20,type="oat",levels=4,grid.jump=2)
)
setProcess(ishiReg, morris.designer, "design")
# 2) Build an analysis process with the default method and put it
# into the workflow
default.analyser <- mtkDefaultAnalyser()
setProcess(ishiReg, default.analyser, "analyze")
# 3) Run the new workflow
run(ishiReg)
summary(ishiReg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.