Returns a NumPy array. Arrays must have elements of the same type, and rows of equal size.
(self)
| 1881 | |
| 1882 | @property |
| 1883 | def array(self): |
| 1884 | """ Returns a NumPy array. |
| 1885 | Arrays must have elements of the same type, and rows of equal size. |
| 1886 | """ |
| 1887 | import numpy |
| 1888 | return numpy.array(self) |
| 1889 | |
| 1890 | def flip(datasheet): |
| 1891 | """ Returns a new datasheet with rows for columns and columns for rows. |