An in-memory table in DolphinDB:
t=table(10:0,`time`sym`bid`ofr,[TIMESTAMP,SYMBOL,DOUBLE,DOUBLE])
Would like to add a new column count to t, I have tried the function addColumn, it did not work.
addColumn(t,`count,[INT])
execution was completed with exception
Usage: addColumn(table, newColNames, newColTypes). table must be a streaming table or a dfs-based table.