As @BrenBarn commented, the rolling function needs to reduce a vector to a single number. The following is equivalent to what you were trying to do and help’s highlight the problem.
zscore = lambda x: (x - x.mean()) / x.std()
tmp.rolling(5).apply(zscore)
TypeError: only length-1 arrays can be converted to Python scalars
In the zscore function, x.mean() reduces, x.std() reduces, but x is an array. Thus the entire thing is an array.
The way around this is to perform the roll on the parts of the z-score calculation that require it, and not on the parts that cause the problem.
(tmp - tmp.rolling(5).mean()) / tmp.rolling(5).std()
