您现在的位置是:课程教程文章

python中filter()的多种筛选

2023-12-14 21:01课程教程文章 人已围观

1、筛选指定的列,类似于花式索引

df2.filter(items=['one','three'])
"""
 
one three
mouse 1 3
rabbit 4 6
"""

2、筛选以字母e结尾的列

df2.filter(regex='e$', axis=1)
 
"""
 
one three
mouse 1 3
rabbit 4 6
"""

3、筛选以字母e结尾的行

df2.filter(regex='e$',axis=0)
 
"""
 
one two three
mouse 1 2 3
"""

4、筛选行索引中有bbi的行

df2.filter(like='bbi',axis=0)
 
"""
 
one two three
rabbit 4 5 6
"""

以上就是python中filter()的多种筛选,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python中filter()的多种筛选

上一篇:python中apply和transform的比较

下一篇:没有了

站点信息

  • 文章统计篇文章