X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flevene.h;h=37019524408d27e206c81bb54fa655818ebe96cd;hb=14e7292894533c5491a774a2d749386362660812;hp=8f19deade2a33237648bf9f339ee50e727be2deb;hpb=ccf2f45c091ce1555b4e2a36186c501675c18a59;p=pspp diff --git a/src/levene.h b/src/levene.h index 8f19deade2..3701952440 100644 --- a/src/levene.h +++ b/src/levene.h @@ -25,6 +25,8 @@ #include "var.h" +/* What to do with missing values */ +enum lev_missing { LEV_ANALYSIS, LEV_LISTWISE }; /* Calculate the Levene statistic @@ -36,7 +38,9 @@ The dependent variables : v_dep; */ -void levene(struct variable *v_indep, int n_dep, struct variable **v_dep); + +void levene(struct variable *v_indep, int n_dep, struct variable **v_dep, + enum lev_missing, is_missing_func);