NPAR: Implemented the /KENDALL subcommand.
[pspp-builds.git] / src / language / stats / friedman.h
index 4d271d8547f37dfd556698ef790b6a6c83539279..22154c9cf5d52a1f39cb0ca137d204dddb4fd93a 100644 (file)
 
 
 
+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