HistoryTimestamp
History view that exposes timestamps in milliseconds since the Unix epoch.
Methods
| Method | Description |
|---|---|
collect | Collect all timestamps into a NumPy ndarray. |
collect_rev | Collect all timestamps into a NumPy ndarray in reverse order. |
to_list | Collect all timestamps into a list. |
to_list_rev | Collect all timestamps into a list in reverse order. |
Method Details
collect
Collect all timestamps into a NumPy ndarray.
Returns
| Type | Description |
|---|---|
NDArray[np.int64] | Timestamps in milliseconds since the Unix epoch. |
collect_rev
Collect all timestamps into a NumPy ndarray in reverse order.
Returns
| Type | Description |
|---|---|
NDArray[np.int64] | Timestamps in milliseconds since the Unix epoch in reverse order. |
to_list
Collect all timestamps into a list.
Returns
| Type | Description |
|---|---|
| list[int] | List of timestamps. |
to_list_rev
Collect all timestamps into a list in reverse order.
Returns
| Type | Description |
|---|---|
| list[int] | List of timestamps. |