1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include "factor-stats.h"
19 #include <data/val-type.h>
20 #include <data/value.h>
21 #include <libpspp/hash.h>
22 #include <libpspp/array.h>
24 #include "percentiles.h"
30 #include "histogram.h"
35 metrics_precalc(struct metrics *m)
46 m->moments = moments1_create(MOMENT_KURTOSIS);
48 m->ordered_data = hsh_create(20,
49 (hsh_compare_func *) compare_values,
50 (hsh_hash_func *) hash_value,
51 (hsh_free_func *) weighted_value_free,
56 /* Include val in the calculation for the metrics.
57 If val is null, then treat it as MISSING
60 metrics_calc (struct metrics *fs, const union value *val,
61 double weight, int case_no)
63 struct weighted_value **wv;
68 fs->n_missing += weight;
74 moments1_add(fs->moments, x, weight);
77 if ( x < fs->min) fs->min = x;
78 if ( x > fs->max) fs->max = x;
81 wv = (struct weighted_value **) hsh_probe (fs->ordered_data,(void *) val );
85 /* If this value has already been seen, then simply
86 increase its weight and push a new case number */
90 assert( (*wv)->v.f == val->f );
93 cn = xmalloc ( sizeof *cn);
94 cn->next = (*wv)->case_nos ;
101 struct case_node *cn;
103 *wv = weighted_value_create();
107 cn = xmalloc (sizeof *cn);
110 (*wv)->case_nos = cn;
117 metrics_postcalc(struct metrics *m)
125 moments1_calculate (m->moments, &m->n, &m->mean, &m->var,
126 &m->skewness, &m->kurtosis);
128 moments1_destroy (m->moments);
131 m->stddev = sqrt(m->var);
133 /* FIXME: Check this is correct ???
134 Shouldn't we use the sample variance ??? */
135 m->se_mean = sqrt (m->var / m->n) ;
139 m->wvp = (struct weighted_value **) hsh_sort(m->ordered_data);
140 m->n_data = hsh_count(m->ordered_data);
142 /* Trimmed mean calculation */
143 if ( m->n_data <= 1 )
145 m->trimmed_mean = m->mean;
149 m->histogram = histogram_create(10, m->min, m->max);
151 for ( i = 0 ; i < m->n_data ; ++i )
153 struct weighted_value **wv = (m->wvp) ;
154 gsl_histogram_accumulate(m->histogram, wv[i]->v.f, wv[i]->w);
161 for ( i = 0 ; i < m->n_data ; ++i )
166 m->wvp[i]->rank = j + (m->wvp[i]->w - 1) / 2.0 ;
177 for ( i = m->n_data -1 ; i >= 0; --i )
179 if ( tc > m->n - m->wvp[i]->cc)
184 /* Calculate the percentiles */
185 ptiles (m->ptile_hash, (const struct weighted_value **) m->wvp,
186 m->n_data, m->n, m->ptile_alg);
188 tukey_hinges ((const struct weighted_value **) m->wvp,
189 m->n_data, m->n, m->hinge);
191 /* Special case here */
194 m->trimmed_mean = m->wvp[k2]->v.f;
199 for ( i = k1 + 2 ; i <= k2 - 1 ; ++i )
201 m->trimmed_mean += m->wvp[i]->v.f * m->wvp[i]->w;
205 m->trimmed_mean += (m->n - m->wvp[k2 - 1]->cc - tc) * m->wvp[k2]->v.f ;
206 m->trimmed_mean += (m->wvp[k1 + 1]->cc - tc) * m->wvp[k1 + 1]->v.f ;
207 m->trimmed_mean /= 0.9 * m->n ;
213 struct weighted_value *
214 weighted_value_create(void)
216 struct weighted_value *wv;
217 wv = xmalloc (sizeof *wv);
226 weighted_value_free(struct weighted_value *wv)
228 struct case_node *cn ;
237 struct case_node *next = cn->next;
251 /* Create a factor statistics object with for N dependent vars
252 and ID0 and ID1 as the values of the independent variable */
253 struct factor_statistics *
254 create_factor_statistics (int n,
258 struct factor_statistics *f;
260 f = xmalloc (sizeof *f);
264 f->m = xnmalloc (n, sizeof *f->m);
265 memset (f->m, 0, sizeof(struct metrics) * n);
272 metrics_destroy(struct metrics *m)
274 hsh_destroy(m->ordered_data);
275 hsh_destroy(m->ptile_hash);
277 gsl_histogram_free(m->histogram);
281 factor_statistics_free(struct factor_statistics *f)
287 for ( i = 0 ; i < f->n_var; ++i )
288 metrics_destroy(&f->m[i]);
295 factor_statistics_compare(const struct factor_statistics *f0,
296 const struct factor_statistics *f1, int width)
304 cmp0 = compare_values(f0->id[0], f1->id[0], width);
310 if ( ( f0->id[1]->f == SYSMIS ) && (f1->id[1]->f != SYSMIS) )
313 if ( ( f0->id[1]->f != SYSMIS ) && (f1->id[1]->f == SYSMIS) )
316 return compare_values (f0->id[1], f1->id[1], width);
320 factor_statistics_hash (const struct factor_statistics *f, int width)
324 h = hash_value (f->id[0], width);
326 if ( f->id[1]->f != SYSMIS )
327 h += hash_value(f->id[1], width);