python,pandas常用函数

Posted xinyangq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python,pandas常用函数相关的知识,希望对你有一定的参考价值。

一、rename,更改df的列名和行索引

 1 df=pd.DataFrame(np.arange(1,10).reshape(3,3))
 2 print(df)
 3 print(type(df))
 4 结果为:
 5    0  1  2
 6 0  1  2  3
 7 1  4  5  6
 8 2  7  8  9
 9 <class pandas.core.frame.DataFrame>
10 
11 my_col=dict(zip(range(3),[A,B,C]))
12 df.rename(columns=my_col,inplace=True)
13 print(df)
14 print(type(df))
15 结果为:
16    A  B  C
17 0  1  2  3
18 1  4  5  6
19 2  7  8  9
20 <class pandas.core.frame.DataFrame>

 

以上是关于python,pandas常用函数的主要内容,如果未能解决你的问题,请参考以下文章

pandas常用函数说明及速查表

python pandas numpy matplotlib 常用方法及函数

pandas常用

常用python日期日志获取内容循环的代码片段

python pandas multiindex片段

python常用代码片段总结