pandas explode() 函数的 Koalas 等价物是什么?

What is the Koalas equivalent of the pandas explode() function?

我想将包含值列表的 Koalas 列分解为多个列。当我尝试按照记录 here 使用 df.explode() 时,我得到了 AttributeError: 'DataFrame' object has no attribute 'explode'。我知道 Koalas 是一个相对较新的 API,是否还不支持 explode()?

好像explode还没有实现。您可以在 koalas api reference.

查看所有已实现的方法