X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fglm.q;h=2363571c5c81db88b10d8450e1c5aa8fc09e27a6;hb=3aa2d5510442a459946a2e9bada801ac86e07fd4;hp=b4eddc7bcff1555a4ade9138b329eecac436cafe;hpb=f141f7f7e76cb0eb15d2207b60cc93ed18472cd4;p=pspp-builds.git diff --git a/src/language/stats/glm.q b/src/language/stats/glm.q index b4eddc7b..2363571c 100644 --- a/src/language/stats/glm.q +++ b/src/language/stats/glm.q @@ -252,26 +252,13 @@ glm_custom_dependent (struct lexer *lexer, struct dataset *ds, return 1; } -/* - COV is the covariance matrix for variables included in the - model. That means the dependent variable is in there, too. - */ -static void -coeff_init (pspp_linreg_cache * c, const struct design_matrix *cov) -{ - c->coeff = xnmalloc (cov->m->size2, sizeof (*c->coeff)); - c->n_coeffs = cov->m->size2 - 1; - pspp_coeff_init (c->coeff, cov); -} - - -static pspp_linreg_cache * +static linreg * fit_model (const struct covariance *cov, const struct variable *dep_var, const struct variable ** indep_vars, size_t n_data, size_t n_indep) { - pspp_linreg_cache *result = NULL; + linreg *result = NULL; return result; } @@ -285,7 +272,7 @@ run_glm (struct casereader *input, const struct variable **numerics = NULL; const struct variable **categoricals = NULL; int n_indep = 0; - pspp_linreg_cache *model = NULL; + linreg *model = NULL; pspp_linreg_opts lopts; struct ccase *c; size_t i;