X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffriedman.h;h=d6cf0036cf8341886108ef55f39affb8b686586b;hb=30f6d8606d41c9ee1738b2f92541d836df1f13c0;hp=4d271d8547f37dfd556698ef790b6a6c83539279;hpb=566bb87d7bab018ba7eff48c61fa11c41ce675fa;p=pspp diff --git a/src/language/stats/friedman.h b/src/language/stats/friedman.h index 4d271d8547..d6cf0036cf 100644 --- a/src/language/stats/friedman.h +++ b/src/language/stats/friedman.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010, 2011 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 @@ -19,16 +19,23 @@ #include #include -#include +#include "language/stats/npar.h" +struct friedman_test +{ + struct one_sample_test parent; + + /* Calculate and display the Kendall W statistic */ + bool kendalls_w; +}; void friedman_execute (const struct dataset *ds, - struct casereader *input, - enum mv_class exclude, - const struct npar_test *test, - bool, - double); + struct casereader *input, + enum mv_class exclude, + const struct npar_test *test, + bool, + double); #endif