I have a series indexed by date:
s = indexedSeries(2011.12.30..2012.01.01, [0, 60, 0])
I want to remove all rows with 0 values from the series. How should I script this in DolphinDB?
I have a series indexed by date:
s = indexedSeries(2011.12.30..2012.01.01, [0, 60, 0])
I want to remove all rows with 0 values from the series. How should I script this in DolphinDB?
Copyright © 2021 Jogjafile Inc.
To remove all rows with 0 values try this.
Or:
You can also use filter function to achieve the same result.
Hope it helps