-
I would like to create a new column that is the result of In other words, is it possible to treat the current column as a list in the creation of a new column. From my (limited) research, it appears that all operations are cell-by-cell, which would prohibit this. Can anyone educate me? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @wbmphd, I don't think you can quite use |
Beta Was this translation helpful? Give feedback.
Hi @wbmphd, I don't think you can quite use
numpy.diff
, but you can get a windowed view of the current column; use thew
command and specify the number of rows before/after you want in each list. Then you can use an expression column to do what you want with that last.