I have extracted tables from pdf file with tabulizer package. After extracting tables I want to rbind different tables extracted as list with different length. 
 table1 <- extract_tables("\\AC002_2017.pdf")
 final <- do.call(rbind, table1)
But it gives me following error
 Error in (function (..., deparse.level = 1)  : 
 number of columns of matrices must match (see arg 2)
How can I rbind it?
Format of data is as follows
 [[1]]   [,1]   [,2]   [,3]   [,4]
 [1,]    20     45     34      34 
 [2,]    23     34     67      43
 [3,]    22     23     42      34
 [4,]    45     44     56      54
 [5,]    12     11     12      14
 [6,]    34     33     45      32
