------
*Release date: 2011-04-28*
The fifth release of la is faster and adds fast, moving window methods to
larry. The cost of the speed and new functionality is that la now requires the
Bottleneck package (http://pypi.python.org/pypi/Bottleneck).
**Faster**
- sum, mean, std, var, min, max, median, ranking
- correlation, group_median, demean, demedian, zscore
**Moving window**
- fast (Bottleneck): move_sum, move_mean, move_std, move_min, move_max
- slow (Python): move_ranking, move_median, move_func
**New methods and functions**
- la.data.yahoo.quotes(): Given a ticker sequence, return historical Yahoo!
quotes (open, close, high, low, volume) as a 3d larry
- Numpy array functions that ignore NaNs: demean, demedian, and zscore
- la.unique(): Find the unique elements of a larry
- larry.tofile(): Save 1d or 2d larry to text file
**Enhancements**
- Add optional `ddof` input parameter to larry.std() and larry.var()
- Cut import time by 15%