【说站】python中pandas的知识点整理
2024-11-05
21
python中pandas的知识点整理
说明
1、python+data+analysis的组合缩写,是python中以numpy和matplotlib为基础的第三方数据分析库
2、共同构成python数据分析的基本工具包,享有三个剑客的名字。
安装
打开cmd,依次输入以下三个命令。
pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple
pandas选择数据
import pandas as pd import numpy as np dates = pd.date_range('20210301', periods=6) df1 = pd.DataFrame(np.arange(24).reshape((6, 4)), index=dates, columns=['A', 'B', 'C', 'D']) print(df1)
pandas赋值及操作
import pandas as pd import numpy as np dates = pd.date_range('20210301', periods=6) df1 = pd.DataFrame(np.arange(24).reshape((6, 4)), index=dates, columns=['A', 'B', 'C', 'D']) print(df1)
pandas对于空数据的处理
import pandas as pd import numpy as np dates = pd.date_range('20210301', periods=6) df1 = pd.DataFrame(np.arange(24).reshape((6, 4)), index=dates, columns=['A', 'B', 'C', 'D']) df2 = pd.DataFrame(df1, index=dates, columns=['A', 'B', 'C', 'D', 'E', 'F']) s1 = pd.Series([3, 4, 6, 7], index=dates[:4]) # 对第一个到第四个数据进行赋值 s2 = pd.Series([32, 5, 2, 1], index=dates[2:]) # 对第三个数据到最后一个数据进行赋值 df2['E'] = s1 df2['F'] = s2 print(df2)
以上就是python中pandas的知识点整理,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1个月前赞一波!
相关文章
- 【说站】python tqdm有哪些用法
- 【说站】python正态分布中的normal函数
- 【说站】python socket连接客户端的方法
- 【说站】python socketserver处理客户端的流程
- 【说站】python TCP和UDP协议的区别分析
- 【说站】python if三元表达式如何使用
- 【说站】python自定义进度条显示信息
- 【说站】python线程阻塞的解决
- 【说站】python binomial生成二项分布随机数
- 【说站】python二项分布的概率使用
- 【说站】python计数排序法是什么
- 【说站】python归并排序是什么
- 【说站】python使用choice生成随机数
- 【说站】python归并排序的实现原理
- 【说站】python希尔排序的使用原理
- 【说站】python Task如何在协程调用
- 【说站】python事件循环如何使用?
- 【说站】await在python协程函数的使用
- 【说站】python使用jinja2进行渲染
- 【说站】python统计字符串字符出现次数
文章评论
评论问答