How to extract tables vertically in R

99 Views Asked by At

The below code extracts tables from pdf and puts in into CSV horizontally,
can someone help me how to extract each page's tables vertically in to csv?

library(tabulizer)
pdf_file <- "new.pdf"

result<- extract_tables(pdf_file, pages =c(89,90,91), output = "data.frame")
write.csv(result,'result.csv')
0

There are 0 best solutions below