df.explode() 函数在 python 中不起作用
我面临一个奇怪的问题,我在数据框中有一个列名“window”,它有一个值列表,即[3,9,45,78]。我正在尝试使用 df.explode('window') 分解此列,但这没有任何作用。 “window”列的数据类型是对象。 我检查了我的 pandas 版本,它是 - 1.3.4
I am facing a weird issue, I have a column name 'window' in a data frame and it has a list of values i.e., [3,9,45,78]. I am trying to explode this column using df.explode('window') but this is doing no job. datatype of 'window' column is object.
I have checked my pandas version it is - 1.3.4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请记住,
df.explode
并没有就地完成其工作。它返回一个包含更改的新数据帧:输出:
Remember that
df.explode
does not do its work in place. It RETURNS a new dataframe with the changes:Output: