如下所示:
1
2
3
4
5
6
7
|
###方法1:用shift函数,不用通过循环
import pandas as pd
import numpy as np
import matplotlib as plt
df = pd.DataFrame(np.random.randn( 6 , 4 ),index = dates,columns = list ( 'ABCD' ))
df[ 'diff' ] = df[ 'A' ] - df[ 'A' ].shift( 1 )
|
以上这篇pandas 数据实现行间计算的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u014683699/article/details/54754807