r - Tabulizer extraction missings -
i'm using extract_tables
tabulizer
-package extract tables pdf file. works fine if table less 4 lines headers it's not extracted. if table more 4 lines it's extracted.
this code use :
text <- extract_tables("file path, file name") table <- do.call(rbind, text) table <- as.data.frame(table)
i tried solution fixing area:
text <- extract_tables("file path, file name", area = c(0,0,595,842))
but in case columns missing , columns merged.
did face same issue , knows how solve it?
Comments
Post a Comment