X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flevene.h;h=ba7dea5d39864dc1e4ba2bf9b029be0b51e48cbe;hb=f43378497b8400e9c22a3485c534693dc1bc9554;hp=c94c3d61272f8443b3d175593feaeab64af9a08b;hpb=1959a8562768999654fb385a5f8892a0c3a69f93;p=pspp-builds.git diff --git a/src/math/levene.h b/src/math/levene.h index c94c3d61..ba7dea5d 100644 --- a/src/math/levene.h +++ b/src/math/levene.h @@ -26,9 +26,6 @@ #include #include -/* What to do with missing values */ -enum lev_missing { LEV_ANALYSIS, LEV_LISTWISE }; - /* Calculate the Levene statistic The independent variable : v_indep; @@ -41,10 +38,11 @@ The dependent variables : v_dep; 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);