1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2005 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/>. */
18 Create design matrices for procedures that need them.
22 #include "design-matrix.h"
29 #include <libpspp/message.h>
30 #include <data/variable.h>
31 #include <data/category.h>
32 #include <data/value.h>
34 #include <gsl/gsl_machine.h>
35 #include <gsl/gsl_vector.h>
36 #include <gsl/gsl_matrix.h>
40 #define DM_COLUMN_NOT_FOUND -1
41 #define DM_INDEX_NOT_FOUND -3
44 struct design_matrix *
45 design_matrix_create (int n_variables,
46 const struct variable *v_variables[],
49 struct design_matrix *dm;
50 const struct variable *v;
55 dm = xmalloc (sizeof *dm);
56 dm->vars = xnmalloc (n_variables, sizeof *dm->vars);
57 dm->n_vars = n_variables;
59 for (i = 0; i < n_variables; i++)
62 assert ((dm->vars + i) != NULL);
63 (dm->vars + i)->v = v; /* Allows us to look up the variable from
65 (dm->vars + i)->first_column = n_cols;
66 if (var_is_numeric (v))
68 (dm->vars + i)->last_column = n_cols;
71 else if (var_is_alpha (v))
73 size_t n_categories = cat_get_n_categories (v);
74 (dm->vars + i)->last_column =
75 (dm->vars + i)->first_column + n_categories - 2;
76 n_cols += n_categories - 1;
79 dm->m = gsl_matrix_calloc (n_data, n_cols);
86 design_matrix_destroy (struct design_matrix *dm)
89 gsl_matrix_free (dm->m);
94 Return the index of the variable for the
97 const struct variable *
98 design_matrix_col_to_var (const struct design_matrix *dm, size_t col)
101 struct design_matrix_var v;
103 for (i = 0; i < dm->n_vars; i++)
106 if (v.first_column <= col && col <= v.last_column)
113 Return the number of the first column which holds the
114 values for variable v.
117 design_matrix_var_to_column (const struct design_matrix * dm,
118 const struct variable * v)
121 struct design_matrix_var tmp;
123 for (i = 0; i < dm->n_vars; i++)
128 return tmp.first_column;
131 return DM_COLUMN_NOT_FOUND;
136 dm_var_to_last_column (const struct design_matrix *dm,
137 const struct variable *v)
140 struct design_matrix_var tmp;
142 for (i = 0; i < dm->n_vars; i++)
147 return tmp.last_column;
150 return DM_COLUMN_NOT_FOUND;
154 Set the appropriate value in the design matrix,
155 whether that value is from a categorical or numeric
156 variable. For a categorical variable, only the usual
157 binary encoding is allowed.
160 design_matrix_set_categorical (struct design_matrix *dm, size_t row,
161 const struct variable *var,
162 const union value *val)
170 assert (var_is_alpha (var));
171 fc = design_matrix_var_to_column (dm, var);
172 lc = dm_var_to_last_column (dm, var);
173 assert (lc != DM_COLUMN_NOT_FOUND);
174 assert (fc != DM_COLUMN_NOT_FOUND);
175 is_one = fc + cat_value_find (var, val);
176 for (col = fc; col <= lc; col++)
178 entry = (col == is_one) ? 1.0 : 0.0;
179 gsl_matrix_set (dm->m, row, col, entry);
184 design_matrix_set_numeric (struct design_matrix *dm, size_t row,
185 const struct variable *var, const union value *val)
189 assert (var_is_numeric (var));
190 col = design_matrix_var_to_column ((const struct design_matrix *) dm, var);
191 assert (col != DM_COLUMN_NOT_FOUND);
192 gsl_matrix_set (dm->m, row, col, val->f);