search for: one_more_valu

Displaying 1 result from an estimated 1 matches for "one_more_valu".

Did you mean: one_more_value
2005 Apr 22
1
Beginner in R
hello ( and sorry for my poor english ... ) I'm a newbie on R software and I need to obtain this kind of system : a structure, like a liste : my_struct <- list() my_struct$a <- a_value my_struct$b <- another_value my_struct$c <- one_more_value and a function 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...