in http://scipy.org/scipy/scipy/ticket/425, stats mean, var and median got depreciated. Should this also be done for cov? Note: scipy and stats versions have different defaults for column versus row variables
x = np.array([[0, 2], [1, 1], [2, 0]]).T np.cov(x) array([[ 1., -1.], [-1., 1.]]) stats.cov(x) array([[ 2., 0., -2.], [ 0., 0., 0.], [-2., 0., 2.]]) stats.cov(x.T) array([[ 1., -1.], [-1., 1.]]) np.mean(x) 1.0
Josef
On Mon, Nov 24, 2008 at 9:12 AM, <josef.pktd@gmail.com> wrote:
in http://scipy.org/scipy/scipy/ticket/425, stats mean, var and median got depreciated.
Should this also be done for cov?
+1 If no one objects in the next day, would you add the deprecation warning? Thanks, -- Jarrod Millman Computational Infrastructure for Research Labs 10 Giannini Hall, UC Berkeley phone: 510.643.4014 http://cirl.berkeley.edu/
participants (2)
-
Jarrod Millman -
josef.pktd@gmail.com