X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fmath%2Flevene.h;h=d0e44283cd3b575c66292008182cae9d15fc5855;hb=470affdb48180aebfa764941bbdb353062978444;hp=edbcd80e3fbe1d17b8b6a639e421eda26a8362aa;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/math/levene.h b/src/math/levene.h index edbcd80e3f..d0e44283cd 100644 --- a/src/math/levene.h +++ b/src/math/levene.h @@ -2,7 +2,6 @@ Computes Levene test statistic. Copyright (C) 2004 Free Software Foundation, Inc. - Written by John Darrington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -23,11 +22,8 @@ #define levene_h 1 -#include "variable.h" -#include "casefile.h" - -/* What to do with missing values */ -enum lev_missing { LEV_ANALYSIS, LEV_LISTWISE }; +#include +#include /* Calculate the Levene statistic @@ -40,9 +36,12 @@ The dependent variables : v_dep; */ -void levene(const struct casefile *cf, +struct dictionary ; +struct casefilter ; + +void levene(const struct dictionary *dict, const struct casefile *cf, struct variable *v_indep, size_t n_dep, struct variable **v_dep, - enum lev_missing, is_missing_func); + struct casefilter *filter);