From 5f1597ddcadc954da5a623582745670012222f7b Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 6 Jun 2009 20:53:10 -0700 Subject: [PATCH] crosstab: Remove struct that was defined but never used. --- src/language/stats/crosstabs.q | 35 ---------------------------------- 1 file changed, 35 deletions(-) diff --git a/src/language/stats/crosstabs.q b/src/language/stats/crosstabs.q index c18c3a96..e732c4a0 100644 --- a/src/language/stats/crosstabs.q +++ b/src/language/stats/crosstabs.q @@ -161,41 +161,6 @@ struct pivot_table double total; /* Grand total. */ }; -/* A crosstabulation of exactly 2 variables, conditional on zero - or more other variables having given values. */ -struct crosstab - { - /* Case counts. */ - double missing; - - /* Variables. */ - int n_vars; /* Number of variables (at least 2). */ - const struct variable **vars; - union value *values; /* Values of variables beyond 2. */ - - /* Data. */ - struct table_entry **entries; - size_t n_entries; - - /* Column values, number of columns. */ - union value *cols; - int n_cols; - - /* Row values, number of rows. */ - union value *rows; - int n_rows; - - /* Number of statistically interesting columns/rows - (columns/rows with data in them). */ - int ns_cols, ns_rows; - - /* Matrix contents. */ - double *mat; /* Matrix proper. */ - double *row_tot; /* Row totals. */ - double *col_tot; /* Column totals. */ - double total; /* Grand total. */ - }; - /* Integer mode variable info. */ struct var_range { -- 2.30.2