Gets a numpy-style shape tuple giving the dataset dimensions. Returns: A numpy-style shape tuple.
(self)
| 116 | |
| 117 | @property |
| 118 | def shape(self): |
| 119 | """Gets a numpy-style shape tuple giving the dataset dimensions. |
| 120 | |
| 121 | Returns: |
| 122 | A numpy-style shape tuple. |
| 123 | """ |
| 124 | return (self.end - self.start,) + self.data.shape[1:] |
| 125 | |
| 126 | @property |
| 127 | def dtype(self): |
no outgoing calls