1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2009, 2011 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "math/correlation.h"
21 #include <gsl/gsl_matrix.h>
22 #include <gsl/gsl_cdf.h>
25 #include "libpspp/misc.h"
27 #include "gl/minmax.h"
31 significance_of_correlation (double rho
, double w
)
35 /* |rho| will mathematically always be in the range [0, 1.0]. Inaccurate
36 calculations sometimes cause it to be slightly greater than 1.0, so
37 force it into the correct range to avoid NaN from sqrt(). */
38 t
/= 1 - MIN (1, pow2 (rho
));
44 return gsl_cdf_tdist_Q (t
, w
- 2);
46 return gsl_cdf_tdist_P (t
, w
- 2);
50 correlation_from_covariance (const gsl_matrix
*cv
, const gsl_matrix
*v
)
53 gsl_matrix
*corr
= gsl_matrix_calloc (cv
->size1
, cv
->size2
);
55 for (i
= 0 ; i
< cv
->size1
; ++i
)
57 for (j
= 0 ; j
< cv
->size2
; ++j
)
59 double rho
= gsl_matrix_get (cv
, i
, j
);
61 rho
/= sqrt (gsl_matrix_get (v
, i
, j
))
63 sqrt (gsl_matrix_get (v
, j
, i
));
65 gsl_matrix_set (corr
, i
, j
, rho
);