Bug #19069.
[pspp-builds.git] / README
1 PSPP is a program for statistical analysis of sampled data. It
2 interprets commands in the SPSS language and produces tabular output
3 in ASCII, PostScript, or HTML format.
4
5 PSPP development is ongoing. It already supports a large subset of
6 SPSS's transformation language.  Its statistical procedure support is
7 currently limited, but growing.
8
9 Instructions for PSPP installation are in INSTALL, including a list of
10 prerequisite packages and other PSPP-specific information.
11
12 For information on differences from previous versions, please see file
13 NEWS.  Full documentation on PSPP's language can be found in the doc/
14 directory.
15           
16 Source code for the latest release of PSPP is available at
17 ftp://ftp.gnu.org/pub/gnu/pspp/.  Older versions may be obtained from
18 ftp://alpha.gnu.org/gnu/pspp/.  Development sources are available from
19 CVS at http://savannah.gnu.org/projects/pspp
20    
21 Questions and comments about using PSPP may be sent to pspp-users@gnu.org.
22 Bug reports may be filed at http://savannah.gnu.org/bugs/?group=pspp
23 or emailed to bug-gnu-pspp@gnu.org.  We prefer the web-based system
24 because it makes it more difficult for us to lose track of bugs, but we
25 are happy to hear from users through any means.
26
27 The long term goals for PSPP are ambitious.  We wish to provide the
28 following support to users:
29
30         * All of the SPSS transformation language.  PSPP already
31           supports a large subset of it.
32
33         * All the statistical procedures that someone is willing to
34           implement, whether they exist in SPSS or not.  Currently,
35           statistical support is limited, but growing.
36
37         * Compatibility with SPSS syntax, including compatibility with
38           known bugs and warts, where it makes sense.  We also provide
39           an "enhanced" mode in certain cases where PSPP can output
40           better results that may surprise SPSS users.
41
42         * Friendly textual and graphical interfaces.  This release
43           includes the first version of PSPPIRE, the PSPP graphical
44           user interface.
45
46         * Attractive output, including graphs, in a variety of human-
47           and machine-readable formats.  PSPP currently produces
48           output in ASCII, PostScript, and HTML formats.  We will
49           enhance PSPP's output formatting in the future.
50
51         * Good documentation.  Currently the PSPP manual describes its
52           language completely, but we would like to add information on
53           how to select statistical procedures and interpret their
54           results.
55
56         * Efficient support for very large data sets.  For procedures
57           where it is practical, we wish to efficiently support data
58           sets many times larger than physical memory.  The framework
59           for this feature is already in place, but it has not been
60           tuned or extensively tested.
61
62 Over the long term, we also wish to provide support to developers who
63 wish to extend PSPP with new statistical procedures, by supplying the
64 following:
65
66         * Easy-to-use support for parsing language syntax.  Currently,
67           parsing is done by writing "recursive descent" code by hand,
68           with some support for automated parsing of the most common
69           constructs.  We wish to improve the situation by supplying a
70           more complete and flexible parser generator.
71
72         * Easy-to-use support for producing attractive output.
73           Currently, output is done by writing code to explicitly fill
74           in table cells with data.  We should be able to supply a
75           more convenient interface that also allows for providing
76           machine-readable output.
77
78         * Eventually, a plug-in interface for procedures.  Over the
79           short term, the interface between the PSPP core and
80           statistical procedures is evolving quickly enough that a
81           plug-in model does not make sense.  Over the long term, it
82           may make sense to introduce plug-ins.