SciTools / biggus

:no_entry: [DEPRECATED] Virtual large arrays and lazy evaluation.
http://biggus.readthedocs.io/
GNU Lesser General Public License v3.0
54 stars 27 forks source link

Defer aggregations #18

Closed rhattersley closed 11 years ago

rhattersley commented 11 years ago

Change the behaviour of aggregation operations to return Array results.

So to get a NumPy array for the mean, instead of:

mean_ndarray = biggus.mean(array, axis=0)

one would do:

mean_array = biggus.mean(array, axis=0)
mean_ndarray = mean_array.ndarray()