1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
32 /*#define DEBUGGING 1 */
33 #include "debug-print.h"
35 /* The two different types of samples. */
38 TYPE_A_FROM_B, /* 5 FROM 10 */
39 TYPE_FRACTION /* 0.5 */
42 /* SAMPLE transformation. */
46 int type; /* One of TYPE_*. */
47 int n, N; /* TYPE_A_FROM_B: n from N. */
48 int m, t; /* TYPE_A_FROM_B: # selected so far; # so far. */
49 int frac; /* TYPE_FRACTION: a fraction out of 65536. */
52 int sample_trns_proc (struct trns_header *, struct ccase *);
57 struct sample_trns *trns;
63 lex_match_id ("SAMPLE");
65 if (!lex_force_num ())
67 if (!lex_integer_p ())
70 if (tokval <= 0 || tokval >= 1)
72 msg (SE, _("The sampling factor must be between 0 and 1 "
77 frac = tokval * 65536;
85 if (!lex_force_match_id ("FROM"))
87 if (!lex_force_int ())
92 msg (SE, _("Cannot sample %d observations from a population of "
103 if (type == TYPE_FRACTION)
104 printf ("SAMPLE %g.\n", frac / 65536.);
106 printf ("SAMPLE %d FROM %d.\n", a, b);
109 trns = xmalloc (sizeof *trns);
110 trns->h.proc = sample_trns_proc;
115 trns->m = trns->t = 0;
117 add_transformation ((struct trns_header *) trns);
119 return lex_end_of_command ();
123 sample_trns_proc (struct trns_header * trns, struct ccase *c unused)
125 struct sample_trns *t = (struct sample_trns *) trns;
128 if (t->type == TYPE_FRACTION)
129 return (rand_simple (0x10000) <= t->frac) - 2;
134 U = rand_uniform (1);
135 if ((t->N - t->t) * U >= t->n - t->m)