当前位置: 首页 > 图灵资讯 > 行业资讯> python中pandas的知识点整理

python中pandas的知识点整理

来源:图灵python
时间: 2024-08-08 15:58:57

说明

1、python+data+analysis的组合缩写是python中基于numpy和matplotlib的第三方数据分析库

2、共同构成python数据分析的基本工具包,享有三个剑客的名字。

安装

打开cmd,依次输入以下三个命令。

pipinstallpandas-ihttps://pypi.tuna.tsinghua.edu.cn/simple
pipinstallnumpy-ihttps://pypi.tuna.tsinghua.edu.cn/simple
pipinstallmatplotlib-ihttps://pypi.tuna.tsinghua.edu.cn/simple

选择数据pandas选择数据

importpandasaspd
importnumpyasnp
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赋值及操作

importpandasaspd
importnumpyasnp
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

importpandasaspd
importnumpyasnp
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电脑。