Displaying 1 result from an estimated 1 matches for "a_result".
Did you mean:
_result
2005 Apr 22
1
Beginner in R
...unction with two args : the first is a instance of the structure,
and the second is any component of the structure (here $a, $b or $c) and
the function will do some transformations on this component :
my_func <- function(a_struct, a_comp)
{
a_comp <- transformationFunct(a_comp)
a_result <- someComputation(a_struct)
return(a_result)
}
In reallity, the structure have lot of components (+/- 40) who are input
parameters for a time discret model and this function is to do selective
sensitivity analysis.
Thanks in advance for this information and thanks for doing a ope...