I'm using Tabulizer 0.2.2 extract_tables on the following pdf in R on Mac.
sales <- "http://www.greenwichct.org/upload/medialibrary/5cd/Residential-Sales-by-Address-10-10-to-10-15.pdf"
test <- extract_tables(sales,pages=c(1:10),method="decide")
I believe the tables on each page are the same, but resulting list of matrices for the first ten pages for example gives matrices with 3 different dimensions. Columns are sometimes concatenated, for example in test[[3]] with columns 1 and 2.
I have tried setting the area, specifying methods. I have looked around for how to specify the column parameter, but cannot find anything specific. Even went through with extract_area(), but same result. Same problems using Tabula app also.
Any thoughts appreciated.