Skip to content

Instantly share code, notes, and snippets.

@fclesio
Last active December 15, 2020 22:10
Show Gist options
  • Save fclesio/9653dda1daf100354e3f9fe40cbf5822 to your computer and use it in GitHub Desktop.
Save fclesio/9653dda1daf100354e3f9fe40cbf5822 to your computer and use it in GitHub Desktop.
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