[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1494-g9c8b
From: |
John Darrington |
Subject: |
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1494-g9c8be64 |
Date: |
Tue, 24 Aug 2010 14:58:47 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU PSPP".
The branch, master has been updated
via 9c8be641c528c8f55a68669e0014ee7664233d41 (commit)
via 10564d2d51762fa92574ea2a42262157ff013474 (commit)
via 456454e38aae190277eabaaadc601ccf3ed97af3 (commit)
via 3025fc73778a733bfd2aeefd57da1b1c1955a675 (commit)
via a9c5233f04317a5ace5e6dcbe3cc61a9f07d57c0 (commit)
via af097b7430b4080eec4399df6898a9e97d17d0b4 (commit)
via c91d15f0e87c2667ae4b39c236850ef6669a6b51 (commit)
via c360fff4fd3e4a98cfe02441f43c27725cead44b (commit)
via 5424322a9f6fc37dfb09760c779a63460ecf7eb5 (commit)
via 04ffc94fe6e7940dd49bf3185048ba99aee58442 (commit)
via 8d9fc72f4f9cf0bf5bbcb80bb020592cf9496a97 (commit)
via 956933cf2545aa67692fd72ef8e4b3e00e524281 (commit)
via 0d323042aa7503f67186c88a5d41d1517ba9926c (commit)
via b3e38130c172738f79f180fb4d459e4d5d2d88a6 (commit)
via 2fc70481c7621ee4d51f986c53c4add4ec6cc57d (commit)
via 27efd5d4d3b65514a11ae4d5afacafbf70373310 (commit)
via b4a1fe2442a0b6fc8716e92574d33726d7170fe8 (commit)
via f9054cdd455bb3368161d6e3f400bd373f7044ba (commit)
via 923465a12d3abde067b0b3790768caf326b08a8c (commit)
via 43b96ca660fb4c57674f1625aad48b83c0170de0 (commit)
from f5c20c9555754967be55d063f450db23557478cc (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9c8be641c528c8f55a68669e0014ee7664233d41
Author: John Darrington <address@hidden>
Date: Tue Aug 24 16:17:17 2010 +0200
Categoricals: Sort the reverse value map.
The /CONTRAST subcommand of the ONEWAY command
requires that the categorical values are sorted
in ascending order.
commit 10564d2d51762fa92574ea2a42262157ff013474
Author: John Darrington <address@hidden>
Date: Mon Aug 23 17:26:10 2010 +0200
Oneway: Fixed most compiler warnings
commit 456454e38aae190277eabaaadc601ccf3ed97af3
Author: John Darrington <address@hidden>
Date: Mon Aug 23 17:00:57 2010 +0200
Oneway: Fix problems with MISSING=ANALYSIS
commit 3025fc73778a733bfd2aeefd57da1b1c1955a675
Author: John Darrington <address@hidden>
Date: Mon Aug 23 16:45:27 2010 +0200
Categoricals: Use moments instead of keeping cc count ourselves
commit a9c5233f04317a5ace5e6dcbe3cc61a9f07d57c0
Author: John Darrington <address@hidden>
Date: Sun Aug 15 17:50:14 2010 +0200
oneway.c: Use the categoricals struct to calculate number of groups
commit af097b7430b4080eec4399df6898a9e97d17d0b4
Author: John Darrington <address@hidden>
Date: Sun Aug 15 17:14:10 2010 +0200
oneway: use new structures in the show_contrast_tests function
commit c91d15f0e87c2667ae4b39c236850ef6669a6b51
Author: John Darrington <address@hidden>
Date: Sun Aug 15 13:10:37 2010 +0200
oneway: Fix descriptives for multiple variables
commit c360fff4fd3e4a98cfe02441f43c27725cead44b
Author: John Darrington <address@hidden>
Date: Sat Aug 14 19:49:51 2010 +0200
Add optional callback functions to categoricals.
Added callback functions to categoricals to enable
per category calculations to be done at the request
of the caller. This change also modifies oneway.c (show_descriptives)
to use this new feature. However at present it doesn't
work properly when multiple dependent variables are
specified.
commit 5424322a9f6fc37dfb09760c779a63460ecf7eb5
Author: John Darrington <address@hidden>
Date: Sat Aug 14 17:09:59 2010 +0200
Constness
commit 04ffc94fe6e7940dd49bf3185048ba99aee58442
Author: John Darrington <address@hidden>
Date: Sat Aug 14 14:03:01 2010 +0200
Oneway: Remove group_stats from the show_homogeniety function
commit 8d9fc72f4f9cf0bf5bbcb80bb020592cf9496a97
Author: John Darrington <address@hidden>
Date: Sat Aug 14 13:46:39 2010 +0200
Oneway: Remove group_values struct from show_contrast_coeffs
commit 956933cf2545aa67692fd72ef8e4b3e00e524281
Author: John Darrington <address@hidden>
Date: Sat Aug 14 11:16:21 2010 +0200
Covariance matrix interface change.
covariance_2pass_create now takes a pointer to a
struct categoricals which must be created by the caller,
instead of creating this object for itself. This will
(hopefully) make the implementation of interactions and other
features easier.
commit 0d323042aa7503f67186c88a5d41d1517ba9926c
Author: John Darrington <address@hidden>
Date: Sat Aug 14 10:06:23 2010 +0200
Oneway: Remove dict member from struct and add wv member
commit b3e38130c172738f79f180fb4d459e4d5d2d88a6
Author: John Darrington <address@hidden>
Date: Fri Aug 13 18:21:16 2010 +0200
Oneway: Use covariance matrix and sweep operator
Calculate the anova table using the routines from
src/math/covariance.c and lib/linreg/sweep.c instead
of the add hoc method. This change doesn't remove
all traces of the old method, since the data is still
needed for some subcommands. This will be the subject
of future changes.
commit 2fc70481c7621ee4d51f986c53c4add4ec6cc57d
Author: John Darrington <address@hidden>
Date: Thu Aug 12 21:12:30 2010 +0200
Oneway: Additional test case.
Add an explicit test for a oneway command run
on several different dependent variables.
commit 27efd5d4d3b65514a11ae4d5afacafbf70373310
Author: John Darrington <address@hidden>
Date: Thu Aug 12 18:13:26 2010 +0200
Oneway: Use lex_get_num instead of lex_parse_value.
Contrast coefficients can only be numeric, so parse_value
is an unnecessary generalisation.
commit b4a1fe2442a0b6fc8716e92574d33726d7170fe8
Author: John Darrington <address@hidden>
Date: Sun Aug 8 13:20:46 2010 +0200
Constness
commit f9054cdd455bb3368161d6e3f400bd373f7044ba
Author: John Darrington <address@hidden>
Date: Sun Aug 8 10:10:09 2010 +0200
Constness
commit 923465a12d3abde067b0b3790768caf326b08a8c
Author: John Darrington <address@hidden>
Date: Sun Aug 8 10:02:32 2010 +0200
ONEWAY: seperate the command specification from the variables used in its
calculation
commit 43b96ca660fb4c57674f1625aad48b83c0170de0
Author: John Darrington <address@hidden>
Date: Sun Aug 8 09:33:19 2010 +0200
Categoricals.c Create entries for all groups.
Although for the purposes of creating a covariance matrix, only
n - 1 entries are needed, for other purposes (such as descriptive
statistics, contrasts, planned comparisons etc) all n entries are required.
(where n is the number of distinct values). This change updates
categories.c so that all n categories are generated. Covariance matrix
routines are free to ignore the ones not of interest.
-----------------------------------------------------------------------
Summary of changes:
src/data/casereader-filter.c | 2 +-
src/data/casereader.h | 2 +-
src/language/stats/correlations.c | 2 +-
src/language/stats/glm.q | 10 +-
src/language/stats/oneway.c | 553 ++++++++++++++++++++++++-------------
src/math/categoricals.c | 75 +++++-
src/math/categoricals.h | 17 +-
src/math/covariance.c | 31 ++-
src/math/covariance.h | 9 +-
tests/language/stats/oneway.at | 117 ++++++++-
10 files changed, 598 insertions(+), 220 deletions(-)
hooks/post-receive
--
GNU PSPP
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1494-g9c8be64,
John Darrington <=