在python中的表或数据框单元格中将多行句子转换为单行句子

时间:2018-12-14 11:29:09

标签: python-3.x dataframe datatable pdf-extraction

我正在使用Python在表或DataFrame中的单行句子中使用多行句子。 (我还尝试根据“ NaN”表添加句子,但对我不起作用。

import tabula as read_pdf
import numpy as np
df11 = read_pdf("file1.pdf",multiple_tables=True, pages = 'all',  nospreadsheet = True)
#print(df11)
for i in range(len(df11)):
    a2=df11[i]
    if(len(a2.columns)>2):
        a2.iloc[:,2] = a2.iloc[:,2].ffill() 
        a21_2 = a2.fillna('').groupby(a2.iloc[:,2], as_index=False).sum()
        print(a21_2)

这是我的测试数据在表格单元格中有多行,如何使其变成单行:

0 个答案:

没有答案