Is there any easy way in DolphinDB to accomplish what the shift down function does in Python?
Say I have a matrix that is 3x3:
#0 #1 #2
-- -- --
1 4 7
2 5 8
3 6 9
I want to shift one row down in a matrix as follow:
#0 #1 #2
-- -- --
1 4 7
2 5 8
How can this be done in DolphinDB?
Thanks for advance
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…