Skip to content
Snippets Groups Projects
Commit b2b3f826 authored by Walmes Marques Zeviani's avatar Walmes Marques Zeviani
Browse files

Edita o nome para exibir na tabela.

parent 10638ea7
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,14 @@ nt <- read.xls("/home/walmes/Dropbox/Ensino/ce089-2017-02/notas.xls",
encoding = "latin1")
str(nt)
nt$Nome <- paste(
sub(pattern = "^(\\w+) .*$",
replacement = "\\1",
x = nt$Nome),
sub(pattern = "^\\w.* (\\w+)$",
replacement = "\\1",
x = nt$Nome))
#-----------------------------------------------------------------------
# Editação da tabela.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment