The code is the following
crossval <- function(data, lambda=0, ytrans=function(x) x)
I wanna know what function (x) in a function parameter list mean?if calling the same function again and again or something? If so is it possible to call the function crossval itself?Isthe variable ytrans necessary?cannot we just call the function(x) in the function body?