f {Rdummypkg} | R Documentation |
This function return the sum of the two given input.
f(x, y)
x |
|
y |
|
The value returned is the sum of the two number given as input.
Pierre-Yves Chibon
x <- 2 y <- 2 f(x,y) ## The function is currently defined as function(x,y) x+y