When I try the command for calculating the mean in RStudio I receive an error message.
res <- mean(recup$columnName, na.rm = TRUE)
This lead me to reading up on StackOverflow, then I tried the alternative commands.
lapply(results, mean, na.rm = TRUE)
I receive the same error only with 'In mean.default(X[[i]], ...) :' included in the message.