a53e7334240c63aacfa7adad92f7a3ebdf6d2031
[pspp-builds.git] / src / language / stats / factor.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2009, 2010 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19
20 #include <gsl/gsl_vector.h>
21 #include <gsl/gsl_linalg.h>
22 #include <gsl/gsl_matrix.h>
23 #include <gsl/gsl_eigen.h> 
24 #include <gsl/gsl_blas.h> 
25 #include <gsl/gsl_sort_vector.h>
26
27 #include <math/covariance.h>
28
29 #include <math/correlation.h>
30 #include <math/moments.h>
31 #include <data/procedure.h>
32 #include <language/lexer/variable-parser.h>
33 #include <language/lexer/value-parser.h>
34 #include <language/command.h>
35 #include <language/lexer/lexer.h>
36
37 #include <data/casegrouper.h>
38 #include <data/casereader.h>
39 #include <data/casewriter.h>
40 #include <data/dictionary.h>
41 #include <data/format.h>
42 #include <data/subcase.h>
43
44 #include <libpspp/misc.h>
45 #include <libpspp/message.h>
46
47 #include <output/tab.h>
48
49 #include <output/charts/scree.h>
50 #include <output/chart-item.h>
51
52 #include "gettext.h"
53 #define _(msgid) gettext (msgid)
54 #define N_(msgid) msgid
55
56 enum method
57   {
58     METHOD_CORR,
59     METHOD_COV
60   };
61
62 enum missing_type
63   {
64     MISS_LISTWISE,
65     MISS_PAIRWISE,
66     MISS_MEANSUB,
67   };
68
69 enum extraction_method
70   {
71     EXTRACTION_PC,
72     EXTRACTION_PAF,
73   };
74
75 enum plot_opts
76   {
77     PLOT_SCREE = 0x0001,
78     PLOT_ROTATION = 0x0002
79   };
80
81 enum print_opts
82   {
83     PRINT_UNIVARIATE  = 0x0001,
84     PRINT_DETERMINANT = 0x0002,
85     PRINT_INV         = 0x0004,
86     PRINT_AIC         = 0x0008,
87     PRINT_SIG         = 0x0010,
88     PRINT_COVARIANCE  = 0x0020,
89     PRINT_CORRELATION = 0x0040,
90     PRINT_ROTATION    = 0x0080,
91     PRINT_EXTRACTION  = 0x0100,
92     PRINT_INITIAL     = 0x0200,
93     PRINT_KMO         = 0x0400,
94     PRINT_REPR        = 0x0800, 
95     PRINT_FSCORE      = 0x1000
96   };
97
98
99 struct cmd_factor 
100 {
101   size_t n_vars;
102   const struct variable **vars;
103
104   const struct variable *wv;
105
106   enum method method;
107   enum missing_type missing_type;
108   enum mv_class exclude;
109   enum print_opts print;
110   enum extraction_method extraction;
111   enum plot_opts plot;
112
113   /* Extraction Criteria */
114   int n_factors;
115   double min_eigen;
116   double econverge;
117   int iterations;
118
119   /* Format */
120   double blank;
121   bool sort;
122 };
123
124 struct idata
125 {
126   /* Intermediate values used in calculation */
127
128   const gsl_matrix *corr ;  /* The correlation matrix */
129   const gsl_matrix *cov ;   /* The covariance matrix */
130   const gsl_matrix *n ;     /* Matrix of number of samples */
131
132   gsl_vector *eval ;  /* The eigenvalues */
133   gsl_matrix *evec ;  /* The eigenvectors */
134
135   int n_extractions;
136
137   gsl_vector *msr ;  /* Multiple Squared Regressions */
138 };
139
140 static struct idata *
141 idata_alloc (size_t n_vars)
142 {
143   struct idata *id = xzalloc (sizeof (*id));
144
145   id->n_extractions = 0;
146   id->msr = gsl_vector_alloc (n_vars);
147
148   id->eval = gsl_vector_alloc (n_vars);
149   id->evec = gsl_matrix_alloc (n_vars, n_vars);
150
151   return id;
152 }
153
154 static void
155 idata_free (struct idata *id)
156 {
157   gsl_vector_free (id->msr);
158   gsl_vector_free (id->eval);
159   gsl_matrix_free (id->evec);
160
161   free (id);
162 }
163
164
165 static void
166 dump_matrix (const gsl_matrix *m)
167 {
168   size_t i, j;
169
170   for (i = 0 ; i < m->size1; ++i)
171     {
172       for (j = 0 ; j < m->size2; ++j)
173         printf ("%02f ", gsl_matrix_get (m, i, j));
174       printf ("\n");
175     }
176 }
177
178
179 static void
180 dump_matrix_permute (const gsl_matrix *m, const gsl_permutation *p)
181 {
182   size_t i, j;
183
184   for (i = 0 ; i < m->size1; ++i)
185     {
186       for (j = 0 ; j < m->size2; ++j)
187         printf ("%02f ", gsl_matrix_get (m, gsl_permutation_get (p, i), j));
188       printf ("\n");
189     }
190 }
191
192
193 static void
194 dump_vector (const gsl_vector *v)
195 {
196   size_t i;
197   for (i = 0 ; i < v->size; ++i)
198     {
199       printf ("%02f\n", gsl_vector_get (v, i));
200     }
201   printf ("\n");
202 }
203
204
205 static int 
206 n_extracted_factors (const struct cmd_factor *factor, struct idata *idata)
207 {
208   int i;
209   
210   /* If there is a cached value, then return that. */
211   if ( idata->n_extractions != 0)
212     return idata->n_extractions;
213
214   /* Otherwise, if the number of factors has been explicitly requested,
215      use that. */
216   if (factor->n_factors > 0)
217     {
218       idata->n_extractions = factor->n_factors;
219       goto finish;
220     }
221   
222   /* Use the MIN_EIGEN setting. */
223   for (i = 0 ; i < idata->eval->size; ++i)
224     {
225       double evali = fabs (gsl_vector_get (idata->eval, i));
226
227       idata->n_extractions = i;
228
229       if (evali < factor->min_eigen)
230         goto finish;
231     }
232
233  finish:
234   return idata->n_extractions;
235 }
236
237
238 /* Returns a newly allocated matrix identical to M.
239    It it the callers responsibility to free the returned value.
240 */
241 static gsl_matrix *
242 matrix_dup (const gsl_matrix *m)
243 {
244   gsl_matrix *n =  gsl_matrix_alloc (m->size1, m->size2);
245
246   gsl_matrix_memcpy (n, m);
247
248   return n;
249 }
250
251
252 struct smr_workspace
253 {
254   /* Copy of the subject */
255   gsl_matrix *m;
256   
257   gsl_matrix *inverse;
258
259   gsl_permutation *perm;
260
261   gsl_matrix *result1;
262   gsl_matrix *result2;
263 };
264
265
266 static struct smr_workspace *ws_create (const gsl_matrix *input)
267 {
268   struct smr_workspace *ws = xmalloc (sizeof (*ws));
269   
270   ws->m = gsl_matrix_alloc (input->size1, input->size2);
271   ws->inverse = gsl_matrix_calloc (input->size1 - 1, input->size2 - 1);
272   ws->perm = gsl_permutation_alloc (input->size1 - 1);
273   ws->result1 = gsl_matrix_calloc (input->size1 - 1, 1);
274   ws->result2 = gsl_matrix_calloc (1, 1);
275
276   return ws;
277 }
278
279 static void
280 ws_destroy (struct smr_workspace *ws)
281 {
282   gsl_matrix_free (ws->result2);
283   gsl_matrix_free (ws->result1);
284   gsl_permutation_free (ws->perm);
285   gsl_matrix_free (ws->inverse);
286   gsl_matrix_free (ws->m);
287
288   free (ws);
289 }
290
291
292 /* 
293    Return the square of the regression coefficient for VAR regressed against all other variables.
294  */
295 static double
296 squared_multiple_correlation (const gsl_matrix *corr, int var, struct smr_workspace *ws)
297 {
298   /* For an explanation of what this is doing, see 
299      http://www.visualstatistics.net/Visual%20Statistics%20Multimedia/multiple_regression_analysis.htm
300   */
301
302   int signum = 0;
303   gsl_matrix_view rxx;
304
305   gsl_matrix_memcpy (ws->m, corr);
306
307   gsl_matrix_swap_rows (ws->m, 0, var);
308   gsl_matrix_swap_columns (ws->m, 0, var);
309
310   rxx = gsl_matrix_submatrix (ws->m, 1, 1, ws->m->size1 - 1, ws->m->size1 - 1); 
311
312   gsl_linalg_LU_decomp (&rxx.matrix, ws->perm, &signum);
313
314   gsl_linalg_LU_invert (&rxx.matrix, ws->perm, ws->inverse);
315
316   {
317     gsl_matrix_const_view rxy = gsl_matrix_const_submatrix (ws->m, 1, 0, ws->m->size1 - 1, 1);
318     gsl_matrix_const_view ryx = gsl_matrix_const_submatrix (ws->m, 0, 1, 1, ws->m->size1 - 1);
319
320     gsl_blas_dgemm (CblasNoTrans,  CblasNoTrans,
321                     1.0, ws->inverse, &rxy.matrix, 0.0, ws->result1);
322
323     gsl_blas_dgemm (CblasNoTrans,  CblasNoTrans,
324                     1.0, &ryx.matrix, ws->result1, 0.0, ws->result2);
325   }
326
327   return gsl_matrix_get (ws->result2, 0, 0);
328 }
329
330
331
332 static double the_communality (const gsl_matrix *evec, const gsl_vector *eval, int n, int n_factors);
333
334
335 struct factor_matrix_workspace
336 {
337   size_t n_factors;
338   gsl_eigen_symmv_workspace *eigen_ws;
339
340   gsl_vector *eval ;
341   gsl_matrix *evec ;
342
343   gsl_matrix *gamma ;
344
345   gsl_matrix *r;
346 };
347
348 static struct factor_matrix_workspace *
349 factor_matrix_workspace_alloc (size_t n, size_t nf)
350 {
351   struct factor_matrix_workspace *ws = xmalloc (sizeof (*ws));
352
353   ws->n_factors = nf;
354   ws->gamma = gsl_matrix_calloc (nf, nf);
355   ws->eigen_ws = gsl_eigen_symmv_alloc (n);
356   ws->eval = gsl_vector_alloc (n);
357   ws->evec = gsl_matrix_alloc (n, n);
358   ws->r  = gsl_matrix_alloc (n, n);
359   
360   return ws;
361 }
362
363 static void
364 factor_matrix_workspace_free (struct factor_matrix_workspace *ws)
365 {
366   gsl_eigen_symmv_free (ws->eigen_ws);
367   gsl_vector_free (ws->eval);
368   gsl_matrix_free (ws->evec);
369   gsl_matrix_free (ws->gamma);
370   gsl_matrix_free (ws->r);
371   free (ws);
372 }
373
374 /*
375   Shift P left by OFFSET places, and overwrite TARGET
376   with the shifted result.
377   Positions in TARGET less than OFFSET are unchanged.
378 */
379 static void
380 perm_shift_apply (gsl_permutation *target, const gsl_permutation *p,
381                   size_t offset)
382 {
383   size_t i;
384   assert (target->size == p->size);
385   assert (offset <= target->size);
386
387   for (i = 0; i < target->size - offset; ++i)
388     {
389       target->data[i] = p->data [i + offset];
390     }
391 }
392
393
394 /* 
395    Indirectly sort the rows of matrix INPUT, storing the sort order in PERM.
396    The sort criteria are as follows:
397    
398    Rows are sorted on the first column, until the absolute value of an
399    element in a subsequent column  is greater than that of the first
400    column.  Thereafter, rows will be sorted on the second column,
401    until the absolute value of an element in a subsequent column
402    exceeds that of the second column ...
403 */
404 static void
405 sort_matrix_indirect (const gsl_matrix *input, gsl_permutation *perm)
406 {
407   const size_t n = perm->size;
408   const size_t m = input->size2;
409   int i, j;
410   gsl_matrix *mat ;
411   int column_n = 0;
412   int row_n = 0;
413   gsl_permutation *p;
414
415   assert (perm->size == input->size1);
416
417   p = gsl_permutation_alloc (n);
418
419   /* Copy INPUT into MAT, discarding the sign */
420   mat = gsl_matrix_alloc (n, m);
421   for (i = 0 ; i < mat->size1; ++i)
422     {
423       for (j = 0 ; j < mat->size2; ++j)
424         {
425           double x = gsl_matrix_get (input, i, j);
426           gsl_matrix_set (mat, i, j, fabs (x));
427         }
428     }
429
430   while (column_n < m && row_n < n) 
431     {
432       gsl_vector_const_view columni = gsl_matrix_const_column (mat, column_n);
433       gsl_sort_vector_index (p, &columni.vector);
434
435       for (i = 0 ; i < n; ++i)
436         {
437           gsl_vector_view row = gsl_matrix_row (mat, p->data[n - 1 - i]);
438           size_t maxindex = gsl_vector_max_index (&row.vector);
439           
440           if ( maxindex > column_n )
441             break;
442
443           /* All subsequent elements of this row, are of no interest.
444              So set them all to a highly negative value */
445           for (j = column_n + 1; j < row.vector.size ; ++j)
446             gsl_vector_set (&row.vector, j, -DBL_MAX);
447         }
448
449       perm_shift_apply (perm, p, row_n);
450       row_n += i;
451
452       column_n++;
453     }
454
455   gsl_permutation_free (p);
456   gsl_matrix_free (mat);
457   
458   assert ( 0 == gsl_permutation_valid (perm));
459
460   /* We want the biggest value to be first */
461   gsl_permutation_reverse (perm);    
462 }
463
464
465 /*
466   Get an approximation for the factor matrix into FACTORS, and the communalities into COMMUNALITIES.
467   R is the matrix to be analysed.
468   WS is a pointer to a structure which must have been initialised with factor_matrix_workspace_init.
469  */
470 static void
471 iterate_factor_matrix (const gsl_matrix *r, gsl_vector *communalities, gsl_matrix *factors, struct factor_matrix_workspace *ws)
472 {
473   size_t i;
474   gsl_matrix_view mv ;
475
476   assert (r->size1 == r->size2);
477   assert (r->size1 == communalities->size);
478
479   assert (factors->size1 == r->size1);
480   assert (factors->size2 == ws->n_factors);
481
482   gsl_matrix_memcpy (ws->r, r);
483
484   /* Apply Communalities to diagonal of correlation matrix */
485   for (i = 0 ; i < communalities->size ; ++i)
486     {
487       double *x = gsl_matrix_ptr (ws->r, i, i);
488       *x = gsl_vector_get (communalities, i);
489     }
490
491   gsl_eigen_symmv (ws->r, ws->eval, ws->evec, ws->eigen_ws);
492
493   mv = gsl_matrix_submatrix (ws->evec, 0, 0, ws->evec->size1, ws->n_factors);
494
495   /* Gamma is the diagonal matrix containing the absolute values of the eigenvalues */
496   for (i = 0 ; i < ws->n_factors ; ++i)
497     {
498       double *ptr = gsl_matrix_ptr (ws->gamma, i, i);
499       *ptr = fabs (gsl_vector_get (ws->eval, i));
500     }
501
502   /* Take the square root of gamma */
503   gsl_linalg_cholesky_decomp (ws->gamma);
504
505   gsl_blas_dgemm (CblasNoTrans,  CblasNoTrans,
506                   1.0, &mv.matrix, ws->gamma, 0.0, factors);
507
508   for (i = 0 ; i < r->size1 ; ++i)
509     {
510       double h = the_communality (ws->evec, ws->eval, i, ws->n_factors);
511       gsl_vector_set (communalities, i, h);
512     }
513 }
514
515
516
517 static bool run_factor (struct dataset *ds, const struct cmd_factor *factor);
518
519
520 int
521 cmd_factor (struct lexer *lexer, struct dataset *ds)
522 {
523   bool extraction_seen = false;
524   const struct dictionary *dict = dataset_dict (ds);
525
526   struct cmd_factor factor;
527   factor.n_vars = 0;
528   factor.vars = NULL;
529   factor.method = METHOD_CORR;
530   factor.missing_type = MISS_LISTWISE;
531   factor.exclude = MV_ANY;
532   factor.print = PRINT_INITIAL | PRINT_EXTRACTION | PRINT_ROTATION;
533   factor.extraction = EXTRACTION_PC;
534   factor.n_factors = 0;
535   factor.min_eigen = SYSMIS;
536   factor.iterations = 25;
537   factor.econverge = 0.001;
538   factor.blank = 0;
539   factor.sort = false;
540   factor.plot = 0;
541
542   factor.wv = dict_get_weight (dict);
543
544   lex_match (lexer, '/');
545
546   if (!lex_force_match_id (lexer, "VARIABLES"))
547     {
548       goto error;
549     }
550
551   lex_match (lexer, '=');
552
553   if (!parse_variables_const (lexer, dict, &factor.vars, &factor.n_vars,
554                               PV_NO_DUPLICATE | PV_NUMERIC))
555     goto error;
556
557   if (factor.n_vars < 2)
558     msg (MW, _("Factor analysis on a single variable is not useful."));
559
560   while (lex_token (lexer) != '.')
561     {
562       lex_match (lexer, '/');
563
564       if (lex_match_id (lexer, "PLOT"))
565         {
566           lex_match (lexer, '=');
567           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
568             {
569               if (lex_match_id (lexer, "EIGEN"))
570                 {
571                   factor.plot |= PLOT_SCREE;
572                 }
573 #if FACTOR_FULLY_IMPLEMENTED
574               else if (lex_match_id (lexer, "ROTATION"))
575                 {
576                 }
577 #endif
578               else
579                 {
580                   lex_error (lexer, NULL);
581                   goto error;
582                 }
583             }
584         }
585       else if (lex_match_id (lexer, "METHOD"))
586         {
587           lex_match (lexer, '=');
588           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
589             {
590               if (lex_match_id (lexer, "COVARIANCE"))
591                 {
592                   factor.method = METHOD_COV;
593                 }
594               else if (lex_match_id (lexer, "CORRELATION"))
595                 {
596                   factor.method = METHOD_CORR;
597                 }
598               else
599                 {
600                   lex_error (lexer, NULL);
601                   goto error;
602                 }
603             }
604         }
605 #if FACTOR_FULLY_IMPLEMENTED
606       else if (lex_match_id (lexer, "ROTATION"))
607         {
608           lex_match (lexer, '=');
609           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
610             {
611               if (lex_match_id (lexer, "VARIMAX"))
612                 {
613                 }
614               else if (lex_match_id (lexer, "DEFAULT"))
615                 {
616                 }
617               else
618                 {
619                   lex_error (lexer, NULL);
620                   goto error;
621                 }
622             }
623         }
624 #endif
625       else if (lex_match_id (lexer, "CRITERIA"))
626         {
627           lex_match (lexer, '=');
628           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
629             {
630               if (lex_match_id (lexer, "FACTORS"))
631                 {
632                   if ( lex_force_match (lexer, '('))
633                     {
634                       lex_force_int (lexer);
635                       factor.n_factors = lex_integer (lexer);
636                       lex_get (lexer);
637                       lex_force_match (lexer, ')');
638                     }
639                 }
640               else if (lex_match_id (lexer, "MINEIGEN"))
641                 {
642                   if ( lex_force_match (lexer, '('))
643                     {
644                       lex_force_num (lexer);
645                       factor.min_eigen = lex_number (lexer);
646                       lex_get (lexer);
647                       lex_force_match (lexer, ')');
648                     }
649                 }
650               else if (lex_match_id (lexer, "ECONVERGE"))
651                 {
652                   if ( lex_force_match (lexer, '('))
653                     {
654                       lex_force_num (lexer);
655                       factor.econverge = lex_number (lexer);
656                       lex_get (lexer);
657                       lex_force_match (lexer, ')');
658                     }
659                 }
660               else if (lex_match_id (lexer, "ITERATE"))
661                 {
662                   if ( lex_force_match (lexer, '('))
663                     {
664                       lex_force_int (lexer);
665                       factor.iterations = lex_integer (lexer);
666                       lex_get (lexer);
667                       lex_force_match (lexer, ')');
668                     }
669                 }
670               else if (lex_match_id (lexer, "DEFAULT"))
671                 {
672                   factor.n_factors = 0;
673                   factor.min_eigen = 1;
674                   factor.iterations = 25;
675                 }
676               else
677                 {
678                   lex_error (lexer, NULL);
679                   goto error;
680                 }
681             }
682         }
683       else if (lex_match_id (lexer, "EXTRACTION"))
684         {
685           extraction_seen = true;
686           lex_match (lexer, '=');
687           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
688             {
689               if (lex_match_id (lexer, "PAF"))
690                 {
691                   factor.extraction = EXTRACTION_PAF;
692                 }
693               else if (lex_match_id (lexer, "PC"))
694                 {
695                   factor.extraction = EXTRACTION_PC;
696                 }
697               else if (lex_match_id (lexer, "PA1"))
698                 {
699                   factor.extraction = EXTRACTION_PC;
700                 }
701               else if (lex_match_id (lexer, "DEFAULT"))
702                 {
703                   factor.extraction = EXTRACTION_PC;
704                 }
705               else
706                 {
707                   lex_error (lexer, NULL);
708                   goto error;
709                 }
710             }
711         }
712       else if (lex_match_id (lexer, "FORMAT"))
713         {
714           lex_match (lexer, '=');
715           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
716             {
717               if (lex_match_id (lexer, "SORT"))
718                 {
719                   factor.sort = true;
720                 }
721               else if (lex_match_id (lexer, "BLANK"))
722                 {
723                   if ( lex_force_match (lexer, '('))
724                     {
725                       lex_force_num (lexer);
726                       factor.blank = lex_number (lexer);
727                       lex_get (lexer);
728                       lex_force_match (lexer, ')');
729                     }
730                 }
731               else if (lex_match_id (lexer, "DEFAULT"))
732                 {
733                   factor.blank = 0;
734                   factor.sort = false;
735                 }
736               else
737                 {
738                   lex_error (lexer, NULL);
739                   goto error;
740                 }
741             }
742         }
743       else if (lex_match_id (lexer, "PRINT"))
744         {
745           factor.print = 0;
746           lex_match (lexer, '=');
747           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
748             {
749               if (lex_match_id (lexer, "UNIVARIATE"))
750                 {
751                   factor.print |= PRINT_UNIVARIATE;
752                 }
753               else if (lex_match_id (lexer, "DET"))
754                 {
755                   factor.print |= PRINT_DETERMINANT;
756                 }
757 #if FACTOR_FULLY_IMPLEMENTED
758               else if (lex_match_id (lexer, "INV"))
759                 {
760                 }
761               else if (lex_match_id (lexer, "AIC"))
762                 {
763                 }
764 #endif
765               else if (lex_match_id (lexer, "SIG"))
766                 {
767                   factor.print |= PRINT_SIG;
768                 }
769               else if (lex_match_id (lexer, "CORRELATION"))
770                 {
771                   factor.print |= PRINT_CORRELATION;
772                 }
773 #if FACTOR_FULLY_IMPLEMENTED
774               else if (lex_match_id (lexer, "COVARIANCE"))
775                 {
776                 }
777 #endif
778               else if (lex_match_id (lexer, "ROTATION"))
779                 {
780                   factor.print |= PRINT_ROTATION;
781                 }
782               else if (lex_match_id (lexer, "EXTRACTION"))
783                 {
784                   factor.print |= PRINT_EXTRACTION;
785                 }
786               else if (lex_match_id (lexer, "INITIAL"))
787                 {
788                   factor.print |= PRINT_INITIAL;
789                 }
790 #if FACTOR_FULLY_IMPLEMENTED
791               else if (lex_match_id (lexer, "KMO"))
792                 {
793                 }
794               else if (lex_match_id (lexer, "REPR"))
795                 {
796                 }
797               else if (lex_match_id (lexer, "FSCORE"))
798                 {
799                 }
800 #endif
801               else if (lex_match (lexer, T_ALL))
802                 {
803                   factor.print = 0xFFFF;
804                 }
805               else if (lex_match_id (lexer, "DEFAULT"))
806                 {
807                   factor.print |= PRINT_INITIAL ;
808                   factor.print |= PRINT_EXTRACTION ;
809                   factor.print |= PRINT_ROTATION ;
810                 }
811               else
812                 {
813                   lex_error (lexer, NULL);
814                   goto error;
815                 }
816             }
817         }
818       else if (lex_match_id (lexer, "MISSING"))
819         {
820           lex_match (lexer, '=');
821           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
822             {
823               if (lex_match_id (lexer, "INCLUDE"))
824                 {
825                   factor.exclude = MV_SYSTEM;
826                 }
827               else if (lex_match_id (lexer, "EXCLUDE"))
828                 {
829                   factor.exclude = MV_ANY;
830                 }
831               else if (lex_match_id (lexer, "LISTWISE"))
832                 {
833                   factor.missing_type = MISS_LISTWISE;
834                 }
835               else if (lex_match_id (lexer, "PAIRWISE"))
836                 {
837                   factor.missing_type = MISS_PAIRWISE;
838                 }
839               else if (lex_match_id (lexer, "MEANSUB"))
840                 {
841                   factor.missing_type = MISS_MEANSUB;
842                 }
843               else
844                 {
845                   lex_error (lexer, NULL);
846                   goto error;
847                 }
848             }
849         }
850       else
851         {
852           lex_error (lexer, NULL);
853           goto error;
854         }
855     }
856
857   if ( ! run_factor (ds, &factor)) 
858     goto error;
859
860   free (factor.vars);
861   return CMD_SUCCESS;
862
863  error:
864   free (factor.vars);
865   return CMD_FAILURE;
866 }
867
868 static void do_factor (const struct cmd_factor *factor, struct casereader *group);
869
870
871 static bool
872 run_factor (struct dataset *ds, const struct cmd_factor *factor)
873 {
874   struct dictionary *dict = dataset_dict (ds);
875   bool ok;
876   struct casereader *group;
877
878   struct casegrouper *grouper = casegrouper_create_splits (proc_open (ds), dict);
879
880   while (casegrouper_get_next_group (grouper, &group))
881     {
882       if ( factor->missing_type == MISS_LISTWISE )
883         group  = casereader_create_filter_missing (group, factor->vars, factor->n_vars,
884                                                    factor->exclude,
885                                                    NULL,  NULL);
886       do_factor (factor, group);
887     }
888
889   ok = casegrouper_destroy (grouper);
890   ok = proc_commit (ds) && ok;
891
892   return ok;
893 }
894
895
896 /* Return the communality of variable N, calculated to N_FACTORS */
897 static double
898 the_communality (const gsl_matrix *evec, const gsl_vector *eval, int n, int n_factors)
899 {
900   size_t i;
901
902   double comm = 0;
903
904   assert (n >= 0);
905   assert (n < eval->size);
906   assert (n < evec->size1);
907   assert (n_factors <= eval->size);
908
909   for (i = 0 ; i < n_factors; ++i)
910     {
911       double evali = fabs (gsl_vector_get (eval, i));
912
913       double eveci = gsl_matrix_get (evec, n, i);
914
915       comm += pow2 (eveci) * evali;
916     }
917
918   return comm;
919 }
920
921 /* Return the communality of variable N, calculated to N_FACTORS */
922 static double
923 communality (struct idata *idata, int n, int n_factors)
924 {
925   return the_communality (idata->evec, idata->eval, n, n_factors);
926 }
927
928
929 static void
930 show_scree (const struct cmd_factor *f, struct idata *idata)
931 {
932   struct scree *s;
933   const char *label ;
934
935   if ( !(f->plot & PLOT_SCREE) )
936     return;
937
938
939   label = f->extraction == EXTRACTION_PC ? _("Component Number") : _("Factor Number");
940
941   s = scree_create (idata->eval, label);
942
943   scree_submit (s);
944 }
945
946 static void
947 show_communalities (const struct cmd_factor * factor,
948                     const gsl_vector *initial, const gsl_vector *extracted)
949 {
950   int i;
951   int c = 0;
952   const int heading_columns = 1;
953   int nc = heading_columns;
954   const int heading_rows = 1;
955   const int nr = heading_rows + factor->n_vars;
956   struct tab_table *t;
957
958   if (factor->print & PRINT_EXTRACTION)
959     nc++;
960
961   if (factor->print & PRINT_INITIAL)
962     nc++;
963
964   /* No point having a table with only headings */
965   if (nc <= 1)
966     return;
967
968   t = tab_create (nc, nr);
969
970   tab_title (t, _("Communalities"));
971
972   tab_headers (t, heading_columns, 0, heading_rows, 0);
973
974   c = 1;
975   if (factor->print & PRINT_INITIAL)
976     tab_text (t, c++, 0, TAB_CENTER | TAT_TITLE, _("Initial"));
977
978   if (factor->print & PRINT_EXTRACTION)
979     tab_text (t, c++, 0, TAB_CENTER | TAT_TITLE, _("Extraction"));
980
981   /* Outline the box */
982   tab_box (t,
983            TAL_2, TAL_2,
984            -1, -1,
985            0, 0,
986            nc - 1, nr - 1);
987
988   /* Vertical lines */
989   tab_box (t,
990            -1, -1,
991            -1, TAL_1,
992            heading_columns, 0,
993            nc - 1, nr - 1);
994
995   tab_hline (t, TAL_1, 0, nc - 1, heading_rows);
996   tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
997
998   for (i = 0 ; i < factor->n_vars; ++i)
999     {
1000       c = 0;
1001       tab_text (t, c++, i + heading_rows, TAT_TITLE, var_to_string (factor->vars[i]));
1002
1003       if (factor->print & PRINT_INITIAL)
1004         tab_double (t, c++, i + heading_rows, 0, gsl_vector_get (initial, i), NULL);
1005
1006       if (factor->print & PRINT_EXTRACTION)
1007         tab_double (t, c++, i + heading_rows, 0, gsl_vector_get (extracted, i), NULL);
1008     }
1009
1010   tab_submit (t);
1011 }
1012
1013
1014 static void
1015 show_factor_matrix (const struct cmd_factor *factor, struct idata *idata, const gsl_matrix *fm)
1016 {
1017   int i;
1018   const int n_factors = idata->n_extractions;
1019
1020   const int heading_columns = 1;
1021   const int heading_rows = 2;
1022   const int nr = heading_rows + factor->n_vars;
1023   const int nc = heading_columns + n_factors;
1024   gsl_permutation *perm;
1025
1026   struct tab_table *t = tab_create (nc, nr);
1027
1028   if ( factor->extraction == EXTRACTION_PC )
1029     tab_title (t, _("Component Matrix"));
1030   else 
1031     tab_title (t, _("Factor Matrix"));
1032
1033   tab_headers (t, heading_columns, 0, heading_rows, 0);
1034
1035   if ( factor->extraction == EXTRACTION_PC )
1036     tab_joint_text (t,
1037                     1, 0,
1038                     nc - 1, 0,
1039                     TAB_CENTER | TAT_TITLE, _("Component"));
1040   else
1041     tab_joint_text (t,
1042                     1, 0,
1043                     nc - 1, 0,
1044                     TAB_CENTER | TAT_TITLE, _("Factor"));
1045
1046
1047   tab_hline (t, TAL_1, heading_columns, nc - 1, 1);
1048
1049
1050   /* Outline the box */
1051   tab_box (t,
1052            TAL_2, TAL_2,
1053            -1, -1,
1054            0, 0,
1055            nc - 1, nr - 1);
1056
1057   /* Vertical lines */
1058   tab_box (t,
1059            -1, -1,
1060            -1, TAL_1,
1061            heading_columns, 1,
1062            nc - 1, nr - 1);
1063
1064   tab_hline (t, TAL_1, 0, nc - 1, heading_rows);
1065   tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
1066
1067
1068   /* Initialise to the identity permutation */
1069   perm = gsl_permutation_calloc (factor->n_vars);
1070
1071   if ( factor->sort)
1072     sort_matrix_indirect (fm, perm);
1073
1074   for (i = 0 ; i < n_factors; ++i)
1075     {
1076       tab_text_format (t, heading_columns + i, 1, TAB_CENTER | TAT_TITLE, _("%d"), i + 1);
1077     }
1078
1079   for (i = 0 ; i < factor->n_vars; ++i)
1080     {
1081       int j;
1082       const int matrix_row = perm->data[i];
1083       tab_text (t, 0, i + heading_rows, TAT_TITLE, var_to_string (factor->vars[matrix_row]));
1084
1085       for (j = 0 ; j < n_factors; ++j)
1086         {
1087           double x = gsl_matrix_get (fm, matrix_row, j);
1088
1089           if ( fabs (x) < factor->blank)
1090             continue;
1091
1092           tab_double (t, heading_columns + j, heading_rows + i, 0, x, NULL);
1093         }
1094     }
1095
1096   gsl_permutation_free (perm);
1097
1098   tab_submit (t);
1099 }
1100
1101
1102 static void
1103 show_explained_variance (const struct cmd_factor * factor, struct idata *idata,
1104                          const gsl_vector *initial_eigenvalues,
1105                          const gsl_vector *extracted_eigenvalues)
1106 {
1107   size_t i;
1108   int c = 0;
1109   const int heading_columns = 1;
1110   const int heading_rows = 2;
1111   const int nr = heading_rows + factor->n_vars;
1112
1113   struct tab_table *t ;
1114
1115   double i_total = 0.0;
1116   double i_cum = 0.0;
1117
1118   double e_total = 0.0;
1119   double e_cum = 0.0;
1120
1121   int nc = heading_columns;
1122
1123   if (factor->print & PRINT_EXTRACTION)
1124     nc += 3;
1125
1126   if (factor->print & PRINT_INITIAL)
1127     nc += 3;
1128
1129   if (factor->print & PRINT_ROTATION)
1130     nc += 3;
1131
1132   /* No point having a table with only headings */
1133   if ( nc <= heading_columns)
1134     return;
1135
1136   t = tab_create (nc, nr);
1137
1138   tab_title (t, _("Total Variance Explained"));
1139
1140   tab_headers (t, heading_columns, 0, heading_rows, 0);
1141
1142   /* Outline the box */
1143   tab_box (t,
1144            TAL_2, TAL_2,
1145            -1, -1,
1146            0, 0,
1147            nc - 1, nr - 1);
1148
1149   /* Vertical lines */
1150   tab_box (t,
1151            -1, -1,
1152            -1, TAL_1,
1153            heading_columns, 0,
1154            nc - 1, nr - 1);
1155
1156   tab_hline (t, TAL_1, 0, nc - 1, heading_rows);
1157   tab_hline (t, TAL_1, 1, nc - 1, 1);
1158
1159   tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
1160
1161
1162   if ( factor->extraction == EXTRACTION_PC)
1163     tab_text (t, 0, 1, TAB_LEFT | TAT_TITLE, _("Component"));
1164   else
1165     tab_text (t, 0, 1, TAB_LEFT | TAT_TITLE, _("Factor"));
1166
1167   c = 1;
1168   if (factor->print & PRINT_INITIAL)
1169     {
1170       tab_joint_text (t, c, 0, c + 2, 0, TAB_CENTER | TAT_TITLE, _("Initial Eigenvalues"));
1171       c += 3;
1172     }
1173
1174   if (factor->print & PRINT_EXTRACTION)
1175     {
1176       tab_joint_text (t, c, 0, c + 2, 0, TAB_CENTER | TAT_TITLE, _("Extraction Sums of Squared Loadings"));
1177       c += 3;
1178     }
1179
1180   if (factor->print & PRINT_ROTATION)
1181     {
1182       tab_joint_text (t, c, 0, c + 2, 0, TAB_CENTER | TAT_TITLE, _("Rotation Sums of Squared Loadings"));
1183       c += 3;
1184     }
1185
1186   for (i = 0; i < (nc - heading_columns) / 3 ; ++i)
1187     {
1188       tab_text (t, i * 3 + 1, 1, TAB_CENTER | TAT_TITLE, _("Total"));
1189       /* xgettext:no-c-format */
1190       tab_text (t, i * 3 + 2, 1, TAB_CENTER | TAT_TITLE, _("% of Variance"));
1191       tab_text (t, i * 3 + 3, 1, TAB_CENTER | TAT_TITLE, _("Cumulative %"));
1192
1193       tab_vline (t, TAL_2, heading_columns + i * 3, 0, nr - 1);
1194     }
1195
1196   for (i = 0 ; i < initial_eigenvalues->size; ++i)
1197     i_total += gsl_vector_get (initial_eigenvalues, i);
1198
1199   if ( factor->extraction == EXTRACTION_PAF)
1200     {
1201       e_total = factor->n_vars;
1202     }
1203   else
1204     {
1205       e_total = i_total;
1206     }
1207
1208
1209   for (i = 0 ; i < factor->n_vars; ++i)
1210     {
1211       const double i_lambda = gsl_vector_get (initial_eigenvalues, i);
1212       double i_percent = 100.0 * i_lambda / i_total ;
1213
1214       const double e_lambda = gsl_vector_get (extracted_eigenvalues, i);
1215       double e_percent = 100.0 * e_lambda / e_total ;
1216
1217       c = 0;
1218
1219       tab_text_format (t, c++, i + heading_rows, TAB_LEFT | TAT_TITLE, _("%d"), i + 1);
1220
1221       i_cum += i_percent;
1222       e_cum += e_percent;
1223
1224       /* Initial Eigenvalues */
1225       if (factor->print & PRINT_INITIAL)
1226       {
1227         tab_double (t, c++, i + heading_rows, 0, i_lambda, NULL);
1228         tab_double (t, c++, i + heading_rows, 0, i_percent, NULL);
1229         tab_double (t, c++, i + heading_rows, 0, i_cum, NULL);
1230       }
1231
1232       if (factor->print & PRINT_EXTRACTION)
1233         {
1234           if (i < idata->n_extractions)
1235             {
1236               /* Sums of squared loadings */
1237               tab_double (t, c++, i + heading_rows, 0, e_lambda, NULL);
1238               tab_double (t, c++, i + heading_rows, 0, e_percent, NULL);
1239               tab_double (t, c++, i + heading_rows, 0, e_cum, NULL);
1240             }
1241         }
1242     }
1243
1244   tab_submit (t);
1245 }
1246
1247
1248 static void
1249 show_correlation_matrix (const struct cmd_factor *factor, const struct idata *idata)
1250 {
1251   struct tab_table *t ;
1252   size_t i, j;
1253   int y_pos_corr = -1;
1254   int y_pos_sig = -1;
1255   int suffix_rows = 0;
1256
1257   const int heading_rows = 1;
1258   const int heading_columns = 2;
1259
1260   int nc = heading_columns ;
1261   int nr = heading_rows ;
1262   int n_data_sets = 0;
1263
1264   if (factor->print & PRINT_CORRELATION)
1265     {
1266       y_pos_corr = n_data_sets;
1267       n_data_sets++;
1268       nc = heading_columns + factor->n_vars;
1269     }
1270
1271   if (factor->print & PRINT_SIG)
1272     {
1273       y_pos_sig = n_data_sets;
1274       n_data_sets++;
1275       nc = heading_columns + factor->n_vars;
1276     }
1277
1278   nr += n_data_sets * factor->n_vars;
1279
1280   if (factor->print & PRINT_DETERMINANT)
1281     suffix_rows = 1;
1282
1283   /* If the table would contain only headings, don't bother rendering it */
1284   if (nr <= heading_rows && suffix_rows == 0)
1285     return;
1286
1287   t = tab_create (nc, nr + suffix_rows);
1288
1289   tab_title (t, _("Correlation Matrix"));
1290
1291   tab_hline (t, TAL_1, 0, nc - 1, heading_rows);
1292
1293   if (nr > heading_rows)
1294     {
1295       tab_headers (t, heading_columns, 0, heading_rows, 0);
1296
1297       tab_vline (t, TAL_2, 2, 0, nr - 1);
1298
1299       /* Outline the box */
1300       tab_box (t,
1301                TAL_2, TAL_2,
1302                -1, -1,
1303                0, 0,
1304                nc - 1, nr - 1);
1305
1306       /* Vertical lines */
1307       tab_box (t,
1308                -1, -1,
1309                -1, TAL_1,
1310                heading_columns, 0,
1311                nc - 1, nr - 1);
1312
1313
1314       for (i = 0; i < factor->n_vars; ++i)
1315         tab_text (t, heading_columns + i, 0, TAT_TITLE, var_to_string (factor->vars[i]));
1316
1317
1318       for (i = 0 ; i < n_data_sets; ++i)
1319         {
1320           int y = heading_rows + i * factor->n_vars;
1321           size_t v;
1322           for (v = 0; v < factor->n_vars; ++v)
1323             tab_text (t, 1, y + v, TAT_TITLE, var_to_string (factor->vars[v]));
1324
1325           tab_hline (t, TAL_1, 0, nc - 1, y);
1326         }
1327
1328       if (factor->print & PRINT_CORRELATION)
1329         {
1330           const double y = heading_rows + y_pos_corr;
1331           tab_text (t, 0, y, TAT_TITLE, _("Correlations"));
1332
1333           for (i = 0; i < factor->n_vars; ++i)
1334             {
1335               for (j = 0; j < factor->n_vars; ++j)
1336                 tab_double (t, heading_columns + i,  y + j, 0, gsl_matrix_get (idata->corr, i, j), NULL);
1337             }
1338         }
1339
1340       if (factor->print & PRINT_SIG)
1341         {
1342           const double y = heading_rows + y_pos_sig * factor->n_vars;
1343           tab_text (t, 0, y, TAT_TITLE, _("Sig. 1-tailed"));
1344
1345           for (i = 0; i < factor->n_vars; ++i)
1346             {
1347               for (j = 0; j < factor->n_vars; ++j)
1348                 {
1349                   double rho = gsl_matrix_get (idata->corr, i, j);
1350                   double w = gsl_matrix_get (idata->n, i, j);
1351
1352                   if (i == j)
1353                     continue;
1354
1355                   tab_double (t, heading_columns + i,  y + j, 0, significance_of_correlation (rho, w), NULL);
1356                 }
1357             }
1358         }
1359     }
1360
1361   if (factor->print & PRINT_DETERMINANT)
1362     {
1363       int sign = 0;
1364       double det = 0.0;
1365
1366       const int size = idata->corr->size1;
1367       gsl_permutation *p = gsl_permutation_calloc (size);
1368       gsl_matrix *tmp = gsl_matrix_calloc (size, size);
1369       gsl_matrix_memcpy (tmp, idata->corr);
1370
1371       gsl_linalg_LU_decomp (tmp, p, &sign);
1372       det = gsl_linalg_LU_det (tmp, sign);
1373       gsl_permutation_free (p);
1374       gsl_matrix_free (tmp);
1375
1376
1377       tab_text (t, 0, nr, TAB_LEFT | TAT_TITLE, _("Determinant"));
1378       tab_double (t, 1, nr, 0, det, NULL);
1379     }
1380
1381   tab_submit (t);
1382 }
1383
1384
1385
1386 static void
1387 do_factor (const struct cmd_factor *factor, struct casereader *r)
1388 {
1389   struct ccase *c;
1390   const gsl_matrix *var_matrix;
1391   const gsl_matrix *mean_matrix;
1392
1393   const gsl_matrix *analysis_matrix;
1394   struct idata *idata = idata_alloc (factor->n_vars);
1395
1396   struct covariance *cov = covariance_create (factor->n_vars, factor->vars,
1397                                               factor->wv, factor->exclude);
1398
1399   for ( ; (c = casereader_read (r) ); case_unref (c))
1400     {
1401       covariance_accumulate (cov, c);
1402     }
1403
1404   idata->cov = covariance_calculate (cov);
1405
1406   var_matrix = covariance_moments (cov, MOMENT_VARIANCE);
1407   mean_matrix = covariance_moments (cov, MOMENT_MEAN);
1408   idata->n = covariance_moments (cov, MOMENT_NONE);
1409
1410   if ( factor->method == METHOD_CORR)
1411     {
1412       idata->corr = correlation_from_covariance (idata->cov, var_matrix);
1413       analysis_matrix = idata->corr;
1414     }
1415   else
1416     analysis_matrix = idata->cov;
1417
1418   if ( factor->print & PRINT_UNIVARIATE)
1419     {
1420       const int nc = 4;
1421       int i;
1422       const struct fmt_spec *wfmt = factor->wv ? var_get_print_format (factor->wv) : & F_8_0;
1423
1424
1425       const int heading_columns = 1;
1426       const int heading_rows = 1;
1427
1428       const int nr = heading_rows + factor->n_vars;
1429
1430       struct tab_table *t = tab_create (nc, nr);
1431       tab_title (t, _("Descriptive Statistics"));
1432
1433       tab_headers (t, heading_columns, 0, heading_rows, 0);
1434
1435       /* Outline the box */
1436       tab_box (t,
1437                TAL_2, TAL_2,
1438                -1, -1,
1439                0, 0,
1440                nc - 1, nr - 1);
1441
1442       /* Vertical lines */
1443       tab_box (t,
1444                -1, -1,
1445                -1, TAL_1,
1446                heading_columns, 0,
1447                nc - 1, nr - 1);
1448
1449       tab_hline (t, TAL_1, 0, nc - 1, heading_rows);
1450       tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
1451
1452       tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Mean"));
1453       tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Std. Deviation"));
1454       tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Analysis N"));
1455
1456       for (i = 0 ; i < factor->n_vars; ++i)
1457         {
1458           const struct variable *v = factor->vars[i];
1459           tab_text (t, 0, i + heading_rows, TAB_LEFT | TAT_TITLE, var_to_string (v));
1460
1461           tab_double (t, 1, i + heading_rows, 0, gsl_matrix_get (mean_matrix, i, i), NULL);
1462           tab_double (t, 2, i + heading_rows, 0, sqrt (gsl_matrix_get (var_matrix, i, i)), NULL);
1463           tab_double (t, 3, i + heading_rows, 0, gsl_matrix_get (idata->n, i, i), wfmt);
1464         }
1465
1466       tab_submit (t);
1467     }
1468
1469   show_correlation_matrix (factor, idata);
1470
1471 #if 1
1472   {
1473     gsl_eigen_symmv_workspace *workspace = gsl_eigen_symmv_alloc (factor->n_vars);
1474     
1475     gsl_eigen_symmv (matrix_dup (analysis_matrix), idata->eval, idata->evec, workspace);
1476
1477     gsl_eigen_symmv_free (workspace);
1478   }
1479
1480   gsl_eigen_symmv_sort (idata->eval, idata->evec, GSL_EIGEN_SORT_ABS_DESC);
1481 #endif
1482
1483   idata->n_extractions = n_extracted_factors (factor, idata);
1484
1485   if (idata->n_extractions == 0)
1486     {
1487       msg (MW, _("The FACTOR criteria result in zero factors extracted. Therefore no analysis will be performed."));
1488       goto finish;
1489     }
1490
1491   if (idata->n_extractions > factor->n_vars)
1492     {
1493       msg (MW, _("The FACTOR criteria result in more factors than variables, which is not meaningful. No analysis will be performed."));
1494       goto finish;
1495     }
1496     
1497   {
1498     const gsl_vector *extracted_eigenvalues = NULL;
1499     gsl_vector *initial_communalities = gsl_vector_alloc (factor->n_vars);
1500     gsl_vector *extracted_communalities = gsl_vector_alloc (factor->n_vars);
1501     size_t i;
1502     struct factor_matrix_workspace *fmw = factor_matrix_workspace_alloc (idata->msr->size, idata->n_extractions);
1503     gsl_matrix *factor_matrix = gsl_matrix_calloc (factor->n_vars, fmw->n_factors);
1504
1505     if ( factor->extraction == EXTRACTION_PAF)
1506       {
1507         gsl_vector *diff = gsl_vector_alloc (idata->msr->size);
1508         struct smr_workspace *ws = ws_create (analysis_matrix);
1509
1510         for (i = 0 ; i < factor->n_vars ; ++i)
1511           {
1512             double r2 = squared_multiple_correlation (analysis_matrix, i, ws);
1513
1514             gsl_vector_set (idata->msr, i, r2);
1515           }
1516         ws_destroy (ws);
1517
1518         gsl_vector_memcpy (initial_communalities, idata->msr);
1519
1520         for (i = 0; i < factor->iterations; ++i)
1521           {
1522             double min, max;
1523             gsl_vector_memcpy (diff, idata->msr);
1524
1525             iterate_factor_matrix (analysis_matrix, idata->msr, factor_matrix, fmw);
1526       
1527             gsl_vector_sub (diff, idata->msr);
1528
1529             gsl_vector_minmax (diff, &min, &max);
1530       
1531             if ( fabs (min) < factor->econverge && fabs (max) < factor->econverge)
1532               break;
1533           }
1534         gsl_vector_free (diff);
1535
1536         gsl_vector_memcpy (extracted_communalities, idata->msr);
1537         extracted_eigenvalues = fmw->eval;
1538       }
1539     else if (factor->extraction == EXTRACTION_PC)
1540       {
1541         for (i = 0; i < factor->n_vars; ++i)
1542           gsl_vector_set (initial_communalities, i, communality (idata, i, factor->n_vars));
1543
1544         gsl_vector_memcpy (extracted_communalities, initial_communalities);
1545
1546         iterate_factor_matrix (analysis_matrix, extracted_communalities, factor_matrix, fmw);
1547         extracted_eigenvalues = idata->eval;
1548       }
1549
1550     show_communalities (factor, initial_communalities, extracted_communalities);
1551
1552     show_explained_variance (factor, idata, idata->eval, extracted_eigenvalues);
1553
1554     factor_matrix_workspace_free (fmw);
1555
1556     show_scree (factor, idata);
1557
1558     show_factor_matrix (factor, idata, factor_matrix);
1559
1560     gsl_vector_free (initial_communalities);
1561     gsl_vector_free (extracted_communalities);
1562   }
1563
1564  finish:
1565
1566   idata_free (idata);
1567
1568   casereader_destroy (r);
1569 }