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.
我有一个相当大的 Ibis TableExpr,我想对其行进行迭代以生成专门的文件输出(FASTA 核苷酸序列)。有什么方法可以用 Ibis 做到这一点,还是我应该调用 execute 来创建一个可以调用 iterrows 的 pandas DataFrame?
我在API或教程中找不到任何内容。
正如您所说,您应该遍历 pandas DataFrame。
或者,您还应该能够获得后端生成调用比.execute(). 但是当我们发布 Ibis 2.0 时,这些功能可能会发生变化,因此您的代码可能会中断。
.execute()
如果您对此感兴趣,很高兴收到反馈。您可以在项目 GitHub 中打开一个问题。