【说站】python中filter()的多种筛选
2024-12-23
4
python中filter()的多种筛选
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电脑。
更新于:4小时前赞一波!2
相关文章
- 【说站】python使用required定义必填字段
- 【说站】python marshmallow如何提供默认值
- 【说站】python dump方法的序列化
- 【说站】python中的Locust是什么
- 【说站】python中apply和transform的比较
- 【说站】python中marshmallow库如何使用
- 【说站】python库如何实现对象的转换
- 【说站】python析构函数如何使用
- 【说站】python协程和线程的差异
- 【说站】python私有方法的使用注意
- 【说站】python中__init__ 和__new__的对比
- 【说站】python中类对象及类属性的介绍
- 【说站】python中__call__的触发执行
- 【说站】python类实例化如何实现
- 【说站】python实例属性的查找顺序
- 【说站】python保护变量是什么
- 【说站】python中__enter__和__exit__的应用场景
- 【说站】python数据预处理的三种情况
- 【说站】python自动化测试需要学习什么?
- 【说站】python如何读取不同格式文件
文章评论
评论问答