Closed rhattersley closed 11 years ago
Change the behaviour of aggregation operations to return Array results.
Array
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()
Change the behaviour of aggregation operations to return
Array
results.So to get a NumPy array for the mean, instead of:
one would do: