使用Dask数据框删除列 [英] Drop column using Dask dataframe

查看:80
本文介绍了使用Dask数据框删除列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这应该有效:

raw_data.drop('some_great_column', axis=1).compute()

但是该列未删除.在大熊猫中,我使用:

But the column is not dropped. In pandas I use:

raw_data.drop(['some_great_column'], axis=1, inplace=True)

但是就地不存在于Dask中.有什么想法吗?

But inplace does not exist in Dask. Any ideas?

推荐答案

您可以分为两个操作:

# dask operation
raw_data = raw_data.drop('some_great_column', axis=1)

# conversion to pandas
df = raw_data.compute()

然后将Pandas数据框导出到CSV文件:

Then export the Pandas dataframe to a CSV file:

df.to_csv(r'out.csv', index=False)

这篇关于使用Dask数据框删除列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆