Description Class Hierarchy Constructor Slots Methods Details Author(s) References Examples
The mtkNativeAnalyser class is a sub-class of the class mtkAnalyser used to manage
the sensitivity analysis task implemented locally (i.e. tasks don't need to call services from the Web). It provides all the slots and methods defined in the class mtkAnalyser.
mtkAnalyser
mtkNativeAnalysersignature(analyze=NULL, X=NULL, information=NULL)
analyze:(ANY) a string, an R function, or NULL to inform the method to use for the sensitivity analysis.
name:(character) always takes the string "analyze".
protocol:(character) a string to name the protocol used to run the process: http, system, R, etc. Here, it always takes "R".
site:(character) a string to indicate where the service is located.
service:(character) a string to name the service to invoke. Here, it may be a R function or a method implemented in the package "mtk".
parameters:(vector) a vector of [mtkParameter] containing the parameters to pass while calling the service.
ready:(logical) a logical to tell if the process is ready to run.
state:(logical) a logical to tell if the results produced by the process are available and ready to be consumed.
result:(ANY) a data holder to hold the results produced by the process
setNamesignature(this = "mtkNativeAnalyser", name = "character"): Not used here, method inherited from the parent class.
setParameterssignature(this = "mtkNativeAnalyser", f = "vector"): Assigns new parameters to the process.
getParameterssignature(this = "mtkNativeAnalyser"): Returns the parameters as a named list.
is.readysignature( = "mtkNativeAnalyser"): Tests if the process is ready to run.
setReadysignature(this = "mtkNativeAnalyser", switch = "logical"): Makes the process ready to run.
is.readysignature( = "mtkNativeAnalyser"): Tests if the results produced by the process are available.
setReadysignature(this = "mtkNativeAnalyser", switch = "logical"): Marks the process as already executed.
getResultsignature(this = "mtkNativeAnalyser"): Returns the results produced by the process as a [mtkAnalyserResult].
getDatasignature(this = "mtkNativeAnalyser"): Returns the results produced by the process as a data.frame.
serializeOnsignature(this = "mtkNativeAnalyser"): Returns all data managed by the process as a named list.
runsignature(this = "mtkNativeAnalyser", context= "mtkExpWorkflow"): Runs the Analyser.
summarysignature(object = "mtkNativeAnalyser"): Provides a summary of the results produced by the process.
printsignature(x = "mtkNativeAnalyser"): Prints a report of the results produced by the process.
plotsignature(x = "mtkNativeAnalyser"): Plots the results produced by the process.
reportsignature(this = "mtkNativeAnalyser"): Reports the results produced by the process.
We can construct an object of the mtkNativeAnalyser class from the following situations:
The analyser is provided within the package "mtk";
The analyser is provided as an R function implemented outside the package "mtk"; If so, the R function must produce a result as a named list with two elements: X and information,
where X is a date.frame containing the analysis result and information is a named list containing supplementary information about the analysis process.
The results of the model exploration are produced off-line and available as a data.frame. We just want to use the "mtk" package for reporting.
For detail uses, see examples from help(mtkNativeEvaluator).
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 | # Create a native analyser with the method "Morris" implemented in the package "mtk"
analyser <- mtkNativeAnalyser(
analyze="Morris",
information=list(nboot=20))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.