7017
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2005, 2006, 2007 |
|
2 ## Kurt Hornik |
3426
|
3 ## |
3922
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
|
7 ## under the terms of the GNU General Public License as published by |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3426
|
10 ## |
3922
|
11 ## Octave is distributed in the hope that it will be useful, but |
3200
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
14 ## General Public License for more details. |
|
15 ## |
3200
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3200
|
19 |
3453
|
20 ## -*- texinfo -*- |
3460
|
21 ## @deftypefn {Function File} {[@var{t}, @var{l_x}] =} table (@var{x}) |
|
22 ## @deftypefnx {Function File} {[@var{t}, @var{l_x}, @var{l_y}] =} table (@var{x}, @var{y}) |
3453
|
23 ## Create a contingency table @var{t} from data vectors. The @var{l} |
|
24 ## vectors are the corresponding levels. |
3200
|
25 ## |
|
26 ## Currently, only 1- and 2-dimensional tables are supported. |
3453
|
27 ## @end deftypefn |
3426
|
28 |
5428
|
29 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
30 ## Description: Cross tabulation |
3426
|
31 |
3200
|
32 function [t, v, w] = table (x, y) |
3426
|
33 |
3200
|
34 if (nargin == 1) |
4030
|
35 if (! (isvector (x))) |
3456
|
36 error ("table: x must be a vector"); |
3200
|
37 endif |
|
38 v = values (x); |
|
39 for i = 1 : length (v) |
|
40 t(i) = sum (x == v(i) | isnan (v(i)) * isnan (x)); |
|
41 endfor |
|
42 elseif (nargin == 2) |
4030
|
43 if (! (isvector (x) && isvector (y) && (length (x) == length (y)))) |
3456
|
44 error ("table: x and y must be vectors of the same length"); |
3200
|
45 endif |
|
46 v = values (x); |
|
47 w = values (y); |
|
48 for i = 1 : length (v) |
|
49 for j = 1 : length (w) |
3426
|
50 t(i,j) = sum ((x == v(i) | isnan (v(i)) * isnan (x)) & |
|
51 (y == w(j) | isnan (w(j)) * isnan (y))); |
3200
|
52 endfor |
|
53 endfor |
|
54 else |
6046
|
55 print_usage (); |
3200
|
56 endif |
3426
|
57 |
3200
|
58 endfunction |