Last active
December 15, 2020 22:10
-
-
Save fclesio/9653dda1daf100354e3f9fe40cbf5822 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