cf.Data.varray¶
-
Data.
varray
¶ A numpy array view the data array.
Note that making changes to elements of the returned view changes the underlying data.
If the data array is stored as date-time objects then a numpy array view of numeric reference times will be returned. In this case, a numpy array view of date-time objects may be created with the
dtvarray
attribute.Examples: >>> a = d.varray >>> type(a) <type 'numpy.ndarray'> >>> a array([0, 1, 2, 3, 4]) >>> a[0] = 999 >>> d.varray array([999, 1, 2, 3, 4])