X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fstats%2Fbinomial.c;h=b92018fdb400e9fe88d72ec93eed6d04d40d9bbe;hb=refs%2Fbuilds%2F20100317040506%2Fpspp;hp=bc87a94da3316b0c0cf0b99c0035092a7d93a8cb;hpb=7c08a6e1009cf60847e770a77a73c650e9326379;p=pspp diff --git a/src/language/stats/binomial.c b/src/language/stats/binomial.c index bc87a94da3..b92018fdb4 100644 --- a/src/language/stats/binomial.c +++ b/src/language/stats/binomial.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2006, 2009, 2010 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 @@ -16,7 +16,7 @@ #include #include -#include +#include #include #include @@ -91,8 +91,8 @@ static bool do_binomial (const struct dictionary *dict, struct casereader *input, const struct binomial_test *bst, - struct freq_mutable *cat1, - struct freq_mutable *cat2, + struct freq *cat1, + struct freq *cat2, enum mv_class exclude ) { @@ -160,7 +160,7 @@ binomial_execute (const struct dataset *ds, const struct binomial_test *bst = (const struct binomial_test *) test; const struct one_sample_test *ost = (const struct one_sample_test*) test; - struct freq_mutable *cat[2]; + struct freq *cat[2]; int i; assert ((bst->category1 == SYSMIS) == (bst->category2 == SYSMIS) || bst->cutpoint != SYSMIS); @@ -189,8 +189,6 @@ binomial_execute (const struct dataset *ds, struct tab_table *table = tab_create (7, ost->n_vars * 3 + 1); - tab_dim (table, tab_natural_dimensions, NULL, NULL); - tab_title (table, _("Binomial Test")); tab_headers (table, 2, 0, 1, 0);