X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fnpar-summary.h;h=4cd080a29958b3c94976b1d03fa7e8718f65e9e6;hb=c3bd77adba5746aae895e6a354aada4e694c0e3f;hp=e8132e56c611a6e81d22a22c13981aa51299947e;hpb=08e4a9535a7e1de9cc4b6e619e70805ab951b323;p=pspp-builds.git diff --git a/src/language/stats/npar-summary.h b/src/language/stats/npar-summary.h index e8132e56..4cd080a2 100644 --- a/src/language/stats/npar-summary.h +++ b/src/language/stats/npar-summary.h @@ -1,21 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 Free Software Foundation, Inc. - Written by John Darrington - 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 the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #if !n_par_summary_h #define n_par_summary_h 1 @@ -23,9 +20,8 @@ #include struct variable ; -struct casefile ; +struct casereader ; struct dictionary; -struct casefilter; struct descriptives { @@ -37,14 +33,14 @@ struct descriptives }; void npar_summary_calc_descriptives (struct descriptives *desc, - const struct casefile *cf, - struct casefilter *filter, + struct casereader *input, const struct dictionary *dict, - const struct variable *const *vv, - int n_vars); + const struct variable *const *vv, + int n_vars, + enum mv_class filter); -void do_summary_box (const struct descriptives *desc, +void do_summary_box (const struct descriptives *desc, const struct variable *const *vv, int n_vars);