X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcategory.c;h=968dd4c52da8369e629fb2797faa056db4b67227;hb=3bbb4370239deb29ebbf813d258aef6249e2a431;hp=33078ce2b45528c1cd518e89fb7c798ae44334b6;hpb=685407ad62911e5edb1ec093a01ec9e46563af44;p=pspp-builds.git diff --git a/src/data/category.c b/src/data/category.c index 33078ce2..968dd4c5 100644 --- a/src/data/category.c +++ b/src/data/category.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2009 Free Software Foundation, Inc. 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 @@ -31,16 +31,14 @@ #include #include +#include +#include +#include +#include +#include #include #include -#include -#include "category.h" -#include "value.h" -#include "variable.h" - -#include "xalloc.h" - #define CAT_VALUE_NOT_FOUND -1 #define N_INITIAL_CATEGORIES 1 @@ -108,7 +106,7 @@ cat_value_find (const struct variable *v, const union value *val) { candidate = obs_vals->vals + i; assert (candidate != NULL); - if (!compare_values (candidate, val, var_get_width (v))) + if (value_equal (candidate, val, var_get_width (v))) { return i; } @@ -148,6 +146,23 @@ cat_value_update (const struct variable *v, const union value *val) } } } +/* + Return the count for the sth category. + */ +size_t +cat_get_category_count (const size_t s, const struct variable *v) +{ + struct cat_vals *tmp; + size_t n_categories; + + tmp = var_get_obs_vals (v); + n_categories = cat_get_n_categories (v); + if (s < n_categories) + { + return tmp->value_counts[s]; + } + return CAT_VALUE_NOT_FOUND; +} const union value * cat_subscript_to_value (const size_t s, const struct variable *v) @@ -165,3 +180,20 @@ cat_get_n_categories (const struct variable *v) return var_get_obs_vals (v)->n_categories; } +/* + If VAR is categorical with d categories, its first category should + correspond to the origin in d-dimensional Euclidean space. + */ +bool +cat_is_origin (const struct variable *var, const union value *val) +{ + if (var_is_numeric (var)) + { + return false; + } + if (cat_value_find (var, val) == 0) + { + return true; + } + return false; +}