Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将如图所示的表格提取到数据框中。我尝试使用 tabula-py 提取代码,但 read_pdf 返回了我 []。不确定 tabula-py 是否是正确的模块。任何人都可以帮忙吗?
我发现了错误。我使用了错误的选项。我应该使用 stream 选项而不是 lattice 选项。
df = tabula.read_pdf(pdf_path, stream=True, pages=1, area=(87,72,160 , 200), pandas_options={'header': None})
谢谢。