Skip to content

Instantly share code, notes, and snippets.

@fclesio
Created December 15, 2020 20:22
Show Gist options
  • Save fclesio/f765105e17b754f8c219a2e39a0e9912 to your computer and use it in GitHub Desktop.
Save fclesio/f765105e17b754f8c219a2e39a0e9912 to your computer and use it in GitHub Desktop.
lista_funcionarios <-
c('Nikola','Marie','Albert',
'John','Josh','Hans',
'Karl','Ludwig','Gustav',
'Tom')
lista_salarios <-
c(19000, 2700, 3800,
4700, 5900, 6700,
7000, 33000, 7500,
8000)
lista_idade <-
c(33, 23, 78,
58, 72, 21,
19, 49, 62,
35)
empregados <-
data.frame(lista_funcionarios,
lista_salarios,
lista_idade)
empregados
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment