The following transformations and utilities are not yet implemented, but
they will be supported in a later release.
-@itemize @bullet
-@item
-ADD FILES
-@item
-ANOVA
-@item
-DEFINE
-@item
-FILE TYPE
-@item
-GET SAS
-@item
-GET TRANSLATE
-@item
-MCONVERT
-@item
-PLOT
-@item
-PRESERVE
-@item
-PROCEDURE OUTPUT
-@item
-RESTORE
-@item
-SAVE TRANSLATE
-@item
-UPDATE
-@end itemize
+@table @asis
+@item AGGREGATE
+Save an aggregated file
+
+@item ALSCAL
+Multidimensional scaling
+
+@item ANOVA
+Factorial analysis of variance
+
+@item AUTORECODE
+Recodes variables
+
+@item BOX-JENKINS
+Time series analysis
+
+@item CLUSTER
+Agglomerative hierarchical clustering
+
+@item CORRELATIONS
+Pearson correlations
+
+@item DISCRIMINANT
+Discriminant analysis
+
+@item FACTOR
+Factor analysis
+
+@item HILOGLINEAR
+Hierarchical loglinear analysis
+
+@item LOGLINEAR
+Loglinear analysis
+
+@item MANOVA
+General linear analysis
+
+@item MEANS
+Subpopulation means
+
+@item MULT RESPONSE
+Multiple response tables
+
+@item NONPAR CORR
+Nonparametric correlations
+
+@item NPAR TESTS
+Nonparametric tests
+
+@item PARTIAL CORR
+Partial correlations
+
+@item PLOT
+Scattergram, regression & contour plots
+
+@item PROBIT
+Fitting probit & logit models
+
+@item PROXIMITIES
+Distance, dissimilarity & similarity matrices
+@item QUICK CLUSTER
+Efficient clustering for large numbers of cases
+
+@item REGRESSION
+Multiple regression analysis
+
+@item RELIABILITY
+Item analysis
+
+@item SURVIVAL
+Life tables anlysis
+
+@end table
The following transformations and utilities are not implemented. There
are no plans to support them in future releases. Contributions to
implement them will still be accepted.
@itemize @bullet
-@item
-EDIT
-@item
-GET DATABASE
-@item
-GET OSIRIS
-@item
-GET SCSS
-@item
-GSET
-@item
-HELP
-@item
-INFO
-@item
-INPUT MATRIX
-@item
-KEYED DATA LIST
-@item
-NUMBERED and UNNUMBERED
-@item
-OPTIONS
-@item
-REVIEW
-@item
-SAVE SCSS
-@item
-SPSS MANAGER
-@item
-STATISTICS
+
+@item EDIT
+
+@item GET DATABASE
+
+@item GET OSIRIS
+
+@item GET SCSS
+
+@item GSET
+
+@item HELP
+
+@item INFO
+
+@item INPUT MATRIX
+
+@item KEYED DATA LIST
+
+@item NUMBERED and UNNUMBERED
+
+@item OPTIONS
+
+@item REVIEW
+
+@item SAVE SCSS
+
+@item SPSS MANAGER
+
+@item STATISTICS
@end itemize
+
@setfilename ignored
This chapter documents the statistical procedures that PSPP supports so
far.
+@c If you add any new commands, then don't forget to remove the entry in
+@c not-implemented.texi
+
@menu
* DESCRIPTIVES:: Descriptive statistics.
* FREQUENCIES:: Frequency tables.
+Sun Oct 31 16:08:47 WST 2004 John Darrington <john@darrington.wattle.id.au>
+
+ * bugs/recode-copy-bug.sh bugs/computebug.sh Fixed problem which
+ caused make distcheck to not know where some critical files were.
+
Mon May 31 21:49:19 2004 Ben Pfaff <blp@gnu.org>
* bugs/t-test-with-temp.sh: Use $SUPERVISOR.
sort.data: gengarbage$(EXTEXT)
./gengarbage | head -1000 > $@
-EXTRA_DIST = $(TESTS) weighting.data data-list.data list.data
+EXTRA_DIST = $(TESTS) weighting.data data-list.data list.data \
+ bugs/computebug.stat bugs/computebug.out \
+ bugs/recode-copy-bug-1.stat bugs/recode-copy-bug-2.stat \
+ bugs/recode-copy-bug-1.out bugs/recode-copy-bug-2.out
DISTCLEANFILES = *.save sort.data pspp.* foo* msgs *.actual
#!/bin/sh
-# This program tests ....
+# This program tests for a bug in the `compute' command
TEMPDIR=/tmp/pspp-tst-$$
}
mkdir -p $TEMPDIR
-cp $top_srcdir/tests/bugs/computebug.stat $TEMPDIR
-cd $TEMPDIR
+activity="copy file"
+cp $top_srcdir/tests/bugs/computebug.stat $TEMPDIR
+if [ $? -ne 0 ] ; then no_result ; fi
+activity="chdir"
+cd $TEMPDIR
if [ $? -ne 0 ] ; then no_result ; fi
activity="run program"
-$SUPERVISOR $top_srcdir/src/pspp -o raw-ascii $TEMPDIR/computebug.stat
+$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/computebug.stat
if [ $? -ne 0 ] ; then no_result ; fi
activity="compare output"
diff -b -B -w $TEMPDIR/pspp.list $top_srcdir/tests/bugs/computebug.out
-
if [ $? -ne 0 ] ; then fail ; fi
pass;
}
mkdir -p $TEMPDIR
+
+activity="copy template 1"
cp $top_srcdir/tests/bugs/recode-copy-bug-1.stat $TEMPDIR
-cp $top_srcdir/tests/bugs/recode-copy-bug-2.stat $TEMPDIR
-cd $TEMPDIR
+if [ $? -ne 0 ] ; then no_result ; fi
+activity="copy template 2"
+cp $top_srcdir/tests/bugs/recode-copy-bug-2.stat $TEMPDIR
+if [ $? -ne 0 ] ; then no_result ; fi
+activity="chdir"
+cd $TEMPDIR
if [ $? -ne 0 ] ; then no_result ; fi
activity="run program"
-$SUPERVISOR $top_srcdir/src/pspp -o raw-ascii $TEMPDIR/recode-copy-bug-1.stat
+$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/recode-copy-bug-1.stat
if [ $? -ne 0 ] ; then no_result ; fi
activity="compare output"
diff -b -B -w $TEMPDIR/pspp.list $top_srcdir/tests/bugs/recode-copy-bug-1.out
-
if [ $? -ne 0 ] ; then fail ; fi
activity="run program"
-$SUPERVISOR $top_srcdir/src/pspp -o raw-ascii $TEMPDIR/recode-copy-bug-2.stat
+$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/recode-copy-bug-2.stat
if [ $? -ne 0 ] ; then no_result ; fi
activity="compare output"
diff -b -B -w $TEMPDIR/pspp.list $top_srcdir/tests/bugs/recode-copy-bug-2.out
-
if [ $? -ne 0 ] ; then fail ; fi
-
pass;