NestedIntervalsIterable
Methods
| Method | Description |
|---|
collect | Collect intervals between each nested history's consecutive timestamps in milliseconds into a NumPy array. |
flatten | Collect intervals between each nested history's consecutive timestamps in milliseconds into a single NumPy array. |
flattened_list | Collect intervals between each nested history's consecutive timestamps in milliseconds into a single list. |
to_list | Collect intervals between each nested history's consecutive timestamps in milliseconds into a list. |
Method Details
Collect intervals between each nested history's consecutive timestamps in milliseconds into a NumPy array.
Returns
| Type | Description |
|---|
list[list[NDArray[np.int64]]] | NumPy NDArray of intervals per nested history. |
Collect intervals between each nested history's consecutive timestamps in milliseconds into a single NumPy array.
Returns
| Type | Description |
|---|
NDArray[np.int64] | NumPy NDArray of intervals. |
Collect intervals between each nested history's consecutive timestamps in milliseconds into a single list.
Returns
| Type | Description |
|---|
| list[int] | List of intervals. |
Collect intervals between each nested history's consecutive timestamps in milliseconds into a list.
Returns
| Type | Description |
|---|
| list[list[list[int]]] | List of intervals per nested history. |