I am testing the Taylor Diagram with 2.12 version but it looks like it is losing y-axis as showing below.

# Create dummy 7 data
import MV2
corr = [.2, .5, .7, .85, .9, .95, .99]
std = [1.6, 1.7, 1.5, 1.2 , .8, .9, .98]
data = MV2.array(zip(std, corr))
data.id = "My Taylor Diagram Data"
import vcs
taylor = vcs.createtaylordiagram()
x=vcs.init()
x.plot(data,taylor)
It also gives warning as below, not sure it is related to lose y-axis.
/Users/lee1043/anaconda2/envs/uvcdat-2.12/lib/python2.7/site-packages/numpy/ma/core.py:6385: MaskedArrayFutureWarning: In the future the default for ma.maximum.reduce will be axis=0, not the current None, to match np.maximum.reduce. Explicitly pass 0 or None to silence this warning.
return self.reduce(a)
/Users/lee1043/anaconda2/envs/uvcdat-2.12/lib/python2.7/site-packages/numpy/ma/core.py:6385: MaskedArrayFutureWarning: In the future the default for ma.minimum.reduce will be axis=0, not the current None, to match np.minimum.reduce. Explicitly pass 0 or None to silence this warning.
return self.reduce(a)
I am testing the Taylor Diagram with 2.12 version but it looks like it is losing y-axis as showing below.
It also gives warning as below, not sure it is related to lose y-axis.