Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. library(readxl)
  2. library(plyr)
  3. larquivos<-list.files("C:\Users\tomas.veiga\Documents\Financeiro\dados",full.names=TRUE)
  4. arquivos <- lapply(larquivos, function(x) read_excel(path = x, sheet = 1))
  5.  
  6. extracontab<-data.frame(rbind.fill(arquivos[c(1:12)]))
  7.  
  8. Error in vector(type, length) : vector: cannot make a vector of mode 'NULL'.
  9.  
  10. extracontab<-data.frame(rbind.fill(arquivos[c(1:12)]))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement