首页 > 代码库 > shift

shift

df.shift(n)

表格数据向下移动n行

a 1
b 2
c 3
d

4

df.shift(1)

a NaN
b 1
c 2
d

3

 

shift