【说站】python中DataFrame的运算总结
2024-12-24
7
python中DataFrame的运算总结
1、算术运算
data["open"].add(3).head() # open统一加3 data["open"] + 3 data.sub(100).head() # 所有统一减100 data - 100 data["close"].sub(data["open"]).head() # close减open
2、逻辑运算
query(expr) expr:查询字符串
isin(values) 判断是否为values
data[data["p_change"] > 2].head() # p_change > 2 data[(data["p_change"] > 2) & (data["low"] > 15)].head() data.query("p_change > 2 & low > 15").head() # 判断'turnover'是否为4.19, 2.39 data[data["turnover"].isin([4.19, 2.39])]
3、统计运算
describe()
能够直接得出很多统计结果,count,mean,std,min,max等。
data.describe() data.max(axis=0) data.idxmax(axis=0) #值位置
以上就是python中DataFrame的运算总结,希望对大家有所帮助。更多Python学习指路:python基础教程
更新于:15小时前赞一波!2
相关文章
- 【说站】python中Pycharm的快捷键及用法
- 【说站】python整数的用法整理
- 【说站】python中Locust的安装和使用
- 【说站】python中Pycharm如何调试视图
- 【说站】python中pandas有哪些功能特色
- 【说站】Python pandas和numpy的区别
- 【说站】python数据离散化是什么
- 【说站】python数据拼接如何实现
- 【说站】python中pandas排序的两种形式
- 【说站】python使用required定义必填字段
- 【说站】python marshmallow如何提供默认值
- 【说站】python dump方法的序列化
- 【说站】python中的Locust是什么
- 【说站】python中apply和transform的比较
- 【说站】python中marshmallow库如何使用
- 【说站】python库如何实现对象的转换
- 【说站】python中filter()的多种筛选
- 【说站】python析构函数如何使用
- 【说站】python协程和线程的差异
- 【说站】python私有方法的使用注意
文章评论
评论问答