import numpy as np
## make a copy from the data that widget recieves
out_data = in_data.copy()
## compute cumulative sum of column values
newCumsumColValues = np.cumsum(out_data[:,('myCumsumcolTarget')])
## i got the values
print(newCumsumColValuesl)
## i need to create a new column with the values in out_data## i've tried to update column values first to test## with an static value column values updated to 8
out_data[:,'myCumsumcolTarget'] = 8## with newCumsumColValue is NOT working
out_data[:,'myCumsumcolTarget'] = newCumsumColValues