Created
December 15, 2020 23:08
-
-
Save fclesio/6916fb2636279ade487acd41946f4ea5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| retorna_media <- function (lista) { | |
| media <- as.integer(mean(lista)) | |
| return (media) | |
| } | |
| retorna_media(lista=empregados$lista_idade) | |
| # Media de idade: 45 | |
| retorna_media(lista=empregados$lista_salarios) | |
| # Media de salarios: 9830 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment