python去掉字符串开头的零,Python / Pandas-删除以字符串开头的列

该博客介绍了如何使用pandas库在数据框中筛选出以'201'开头的列,即保留2010年及以后的数据。通过使用`df.filter(regex='^201')`,可以确保只选择以'201'开始的列,从而过滤掉不相关的时间段。
摘要由CSDN通过智能技术生成

I have a dataframe like this

id 2013 Profits 2001 Revenues 1999 Assets...

31 xxxx xxxx xxxx

...

I want to drop the columns that do not start with '201' (I only want to keep the data 2010 and forward).

How can I do that?

解决方案df.filter(like='201')

2013 Profits

id

31 xxxx

As pointed out by @StevenLaan using like will include some columns that have the pattern string somewhere else in the columns name. We can ensure that we only get columns that begin with the pattern string by using regex instead.

df.filter(regex='^201')

2013 Profits

id

31 xxxx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值