I have the following calculation:
df.t =100.0*((1.25/1023)*df.t-0.5)
Strangely, >>>df doesn't show result, only old values in that column. However, df.t shows calculated values.
So, when I export result to pandas with dfp = df.to_pandas_df(), it gets raw old values as well. And even dfp.t = df.t doesn't help.
So, how do I get calculated values?