如何在r

时间:2018-06-10 11:20:59

标签: r

我使用tabulizer包从pdf文件中提取了表格。提取表后,我想将不同的表作为列表提取不同的长度。

 table1 <- extract_tables("\\AC002_2017.pdf")

 final <- do.call(rbind, table1)

但它给了我以下错误

 Error in (function (..., deparse.level = 1)  : 
 number of columns of matrices must match (see arg 2)

我该怎样对抗它?

数据格式如下

 [[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

0 个答案:

没有答案