Q. Body of lapply function is?
β
Correct Answer: (A)
function (X, FUN, ...)
{
FUN <- match.fun(FUN)
if (!is.vector(X) || is.object(X))
X <- as.list(X)
.Internal(lapply(X, FUN))
}
You must be Logged in to update hint/solution