Clean up output subsystem.
[pspp-builds.git] / src / language / stats / regression.q
index 0ffe998b8480b90b3177d7992ed9b4c61ac4df57..c30f6898700188964589f8fee0de78e49cc889b8 100644 (file)
 #include <gsl/gsl_vector.h>
 #include <gsl/gsl_matrix.h>
 #include <math.h>
-#include "libpspp/alloc.h"
-#include "data/case.h"
-#include "data/casefile.h"
-#include "data/category.h"
-#include "data/cat-routines.h"
-#include "language/command.h"
-#include "libpspp/compiler.h"
-#include "math/design-matrix.h"
-#include "data/dictionary.h"
-#include "libpspp/message.h"
-#include "language/data-io/file-handle.h"
+#include <libpspp/alloc.h>
+#include <data/case.h>
+#include <data/casefile.h>
+#include <data/category.h>
+#include <data/cat-routines.h>
+#include <language/command.h>
+#include <libpspp/compiler.h>
+#include <math/design-matrix.h>
+#include <data/dictionary.h>
+#include <libpspp/message.h>
+#include <language/data-io/file-handle.h>
 #include "gettext.h"
-#include "language/lexer/lexer.h"
-#include "math/linreg/linreg.h"
-#include "math/linreg/coefficient.h"
-#include "data/missing-values.h"
+#include <language/lexer/lexer.h>
+#include <math/linreg/linreg.h>
+#include <math/linreg/coefficient.h>
+#include <data/missing-values.h>
 #include "regression-export.h"
-#include "output/table.h"
-#include "data/value-labels.h"
-#include "data/variable.h"
+#include <output/table.h>
+#include <data/value-labels.h>
+#include <data/variable.h>
 #include "procedure.h"
 
 #define REG_LARGE_DATA 1000
@@ -150,7 +150,7 @@ reg_stats_r (pspp_linreg_cache * c)
   tab_float (t, 2, 1, TAB_RIGHT, rsq, 10, 2);
   tab_float (t, 3, 1, TAB_RIGHT, adjrsq, 10, 2);
   tab_float (t, 4, 1, TAB_RIGHT, std_error, 10, 2);
-  tab_title (t, 0, _("Model Summary"));
+  tab_title (t, _("Model Summary"));
   tab_submit (t);
 }
 
@@ -252,7 +252,7 @@ reg_stats_coeff (pspp_linreg_cache * c)
       pval = 2 * gsl_cdf_tdist_Q (fabs (t_stat), 1.0);
       tab_float (t, 6, j + 1, 0, pval, 10, 2);
     }
-  tab_title (t, 0, _("Coefficients"));
+  tab_title (t, _("Coefficients"));
   tab_submit (t);
   free (tmp);
 }
@@ -313,7 +313,7 @@ reg_stats_anova (pspp_linreg_cache * c)
 
   tab_float (t, 6, 1, 0, pval, 8, 3);
 
-  tab_title (t, 0, _("ANOVA"));
+  tab_title (t, _("ANOVA"));
   tab_submit (t);
 }
 static void
@@ -384,7 +384,7 @@ reg_stats_bcov (pspp_linreg_cache * c)
                     gsl_matrix_get (c->cov, row, col), 8, 3);
        }
     }
-  tab_title (t, 0, _("Coefficient Correlations"));
+  tab_title (t, _("Coefficient Correlations"));
   tab_submit (t);
 }
 static void