/* PSPP - a program for statistical analysis. Copyright (C) 2007 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "xalloc.h" #include "gettext.h" #define GLM_LARGE_DATA 1000 /* (headers) */ /* (specification) "GLM" (glm_): *dependent=custom; by=varlist; with=varlist. */ /* (declarations) */ /* (functions) */ static struct cmd_glm cmd; /* Moments for each of the variables used. */ struct moments_var { struct moments1 *m; double *weight; double *mean; double *variance; const struct variable *v; }; /* Dependent variable used. */ static const struct variable **v_dependent; /* Number of dependent variables. */ static size_t n_dependent; #if 0 /* Return value for the procedure. */ static int pspp_glm_rc = CMD_SUCCESS; #else int cmd_glm (struct lexer *lexer, struct dataset *ds); #endif static bool run_glm (struct casereader *, struct cmd_glm *, const struct dataset *, pspp_linreg_cache *); int cmd_glm (struct lexer *lexer, struct dataset *ds) { struct casegrouper *grouper; struct casereader *group; pspp_linreg_cache *model = NULL; bool ok; model = xmalloc (sizeof *model); if (!parse_glm (lexer, ds, &cmd, NULL)) return CMD_FAILURE; /* Data pass. */ grouper = casegrouper_create_splits (proc_open (ds), dataset_dict (ds)); while (casegrouper_get_next_group (grouper, &group)) { run_glm (group, &cmd, ds, model); } ok = casegrouper_destroy (grouper); ok = proc_commit (ds) && ok; free (model); free (v_dependent); return ok ? CMD_SUCCESS : CMD_FAILURE; } /* Parser for the dependent sub command */ static int glm_custom_dependent (struct lexer *lexer, struct dataset *ds, struct cmd_glm *cmd UNUSED, void *aux UNUSED) { const struct dictionary *dict = dataset_dict (ds); if ((lex_token (lexer) != T_ID || dict_lookup_var (dict, lex_tokid (lexer)) == NULL) && lex_token (lexer) != T_ALL) return 2; if (!parse_variables_const (lexer, dict, &v_dependent, &n_dependent, PV_NONE)) { free (v_dependent); return 0; } assert (n_dependent); if (n_dependent > 1) msg (SE, _("Multivariate GLM not yet supported")); n_dependent = 1; /* Drop this line after adding support for multivariate GLM. */ return 1; } static void coeff_init (pspp_linreg_cache * c, struct design_matrix *dm) { c->coeff = xnmalloc (dm->m->size2 + 1, sizeof (*c->coeff)); c->coeff[0] = xmalloc (sizeof (*(c->coeff[0]))); /* The first coefficient is the intercept. */ c->coeff[0]->v_info = NULL; /* Intercept has no associated variable. */ pspp_coeff_init (c->coeff + 1, dm); } /* Put the moments in the linreg cache. */ static void compute_moments (pspp_linreg_cache * c, struct moments_var *mom, struct design_matrix *dm, size_t n) { size_t i; size_t j; double weight; double mean; double variance; double skewness; double kurtosis; /* Scan the variable names in the columns of the design matrix. When we find the variable we need, insert its mean in the cache. */ for (i = 0; i < dm->m->size2; i++) { for (j = 0; j < n; j++) { if (design_matrix_col_to_var (dm, i) == (mom + j)->v) { moments1_calculate ((mom + j)->m, &weight, &mean, &variance, &skewness, &kurtosis); gsl_vector_set (c->indep_means, i, mean); gsl_vector_set (c->indep_std, i, sqrt (variance)); } } } } /* Encode categorical variables. Returns number of valid cases. */ static int data_pass_one (struct casereader *input, const struct variable **vars, size_t n_vars, struct moments_var **mom) { int n_data; struct ccase c; size_t i; for (i = 0; i < n_vars; i++) { mom[i] = xmalloc (sizeof (*mom[i])); mom[i]->v = vars[i]; mom[i]->mean = xmalloc (sizeof (*mom[i]->mean)); mom[i]->variance = xmalloc (sizeof (*mom[i]->mean)); mom[i]->weight = xmalloc (sizeof (*mom[i]->weight)); mom[i]->m = moments1_create (MOMENT_VARIANCE); if (var_is_alpha (vars[i])) cat_stored_values_create (vars[i]); } n_data = 0; for (; casereader_read (input, &c); case_destroy (&c)) { /* The second condition ensures the program will run even if there is only one variable to act as both explanatory and response. */ for (i = 0; i < n_vars; i++) { const union value *val = case_data (&c, vars[i]); if (var_is_alpha (vars[i])) cat_value_update (vars[i], val); else moments1_add (mom[i]->m, val->f, 1.0); } n_data++; } casereader_destroy (input); for (i = 0; i < n_vars; i++) { if (var_is_numeric (mom[i]->v)) { moments1_calculate (mom[i]->m, mom[i]->weight, mom[i]->mean, mom[i]->variance, NULL, NULL); } } return n_data; } static bool run_glm (struct casereader *input, struct cmd_glm *cmd, const struct dataset *ds, pspp_linreg_cache * model) { size_t i; size_t j; int n_indep = 0; struct ccase c; const struct variable **indep_vars; struct variable **all_vars; struct design_matrix *X; struct moments_var **mom; struct casereader *reader; casenumber row; size_t n_all_vars; size_t n_data; /* Number of valid cases. */ pspp_linreg_opts lopts; assert (model != NULL); if (!casereader_peek (input, 0, &c)) { casereader_destroy (input); return true; } output_split_file_values (ds, &c); case_destroy (&c); if (!v_dependent) { dict_get_vars (dataset_dict (ds), &v_dependent, &n_dependent, 1u << DC_SYSTEM); } lopts.get_depvar_mean_std = 1; lopts.get_indep_mean_std = xnmalloc (n_dependent, sizeof (int)); indep_vars = xnmalloc (cmd->n_by, sizeof *indep_vars); n_all_vars = cmd->n_by + n_dependent; all_vars = xnmalloc (n_all_vars, sizeof *all_vars); for (i = 0; i < n_dependent; i++) { all_vars[i] = v_dependent[i]; } for (i = 0; i < cmd->n_by; i++) { indep_vars[i] = cmd->v_by[i]; all_vars[i + n_dependent] = cmd->v_by[i]; } n_indep = cmd->n_by; mom = xnmalloc (n_all_vars, sizeof (*mom)); reader = casereader_clone (input); reader = casereader_create_filter_missing (reader, indep_vars, n_indep, MV_ANY, NULL); reader = casereader_create_filter_missing (reader, v_dependent, 1, MV_ANY, NULL); n_data = data_pass_one (casereader_clone (reader), (const struct variable **) all_vars, n_all_vars, mom); if ((n_data > 0) && (n_indep > 0)) { X = covariance_matrix_create (n_all_vars, (const struct variable **) all_vars); reader = casereader_create_counter (reader, &row, -1); for (; casereader_read (reader, &c); case_destroy (&c)) { /* Accumulate the covariance matrix. */ for (i = 0; i < n_all_vars; ++i) { const struct variable *v = all_vars[i]; const union value *val_v = case_data (&c, v); for (j = i; j < n_all_vars; j++) { const struct variable *w = all_vars[j]; const union value *val_w = case_data (&c, w); covariance_pass_two (X, *mom[i]->mean, *mom[j]->mean, (double) 1 / n_data, (double) n_data, v, w, val_v, val_w); } } } casereader_destroy (reader); for (i = 0; i < n_all_vars; i++) { moments1_destroy (mom[i]->m); free (mom[i]->mean); free (mom[i]->variance); free (mom[i]->weight); free (mom[i]); } free (mom); covariance_matrix_destroy (X); } else { msg (SE, gettext ("No valid data found. This command was skipped.")); } free (indep_vars); free (lopts.get_indep_mean_std); casereader_destroy (input); return true; } /* Local Variables: mode: c End: */