首页 > 代码库 > Pandas的使用(1)
Pandas的使用(1)
Pandas的使用(1)
1.绘图
import pandas as pd import numpy as np import matplotlib.pyplot as plt ts = pd.Series(np.random.randn(1000), index=pd.date_range(‘1/1/2000‘, periods=1000)) ts = ts.cumsum() df = pd.DataFrame(np.random.randn(1000,4),index=ts.index,columns=[‘A‘,‘B‘,‘C‘,‘D‘]) df = df.cumsum() plt.figure(); df.plot(); plt.legend(loc=‘best‘)
运行结果为:
2.idioms
3.if-then..
其中较为复杂的操作,根据一个dataframe的标记操作另外一个dataframe:
import pandas as pd df = pd.DataFrame({‘AAA‘ : [4,5,6,7], ‘BBB‘ : [10,20,30,40],‘CCC‘ : [100,50,-30,-50]}) print(df) df_mask = pd.DataFrame({‘AAA‘ : [True] * 4, ‘BBB‘ : [False] * 4,‘CCC‘ : [True,False]*2}) print(df_mask) df1 = df.where(df_mask,-1000) print(df1)
运行结果为:
结合numpy的where()方法来使用:
import pandas as pd import numpy as np df = pd.DataFrame({‘AAA‘ : [4,5,6,7], ‘BBB‘ : [10,20,30,40],‘CCC‘ : [100,50,-30,-50]}) print(df) df[‘logic‘] = np.where(df[‘AAA‘] > 5,‘high‘,‘low‘); print(df)
运行结果为:
Pandas的使用(1)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。