If we have something simple like
x <- c(9, 4)
mean(x)
Is the variable x itself considered the argument to the function mean()? What is the parameter in this context?
If we have something simple like
x <- c(9, 4)
mean(x)
Is the variable x itself considered the argument to the function mean()? What is the parameter in this context?