Typo.
[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 installation are in INSTALL.  Before you install
10 PSPP, you will need to install certain prerequisites:
11
12     * An ANSI C compiler and tool chain.
13
14     * GNU make.  Other make programs will not work.
15
16     * The GNU Scientific Library (libgsl), version 1.6 or later,
17       including libgslcblas included with GSL.
18
19     * Perl, version 5.005_03 or later.  (Perl is required during build
20       but not after installation.)
21
22     * Optional: libncurses.  Without it, PSPP will assume it is
23       running in an 80x25 terminal.
24
25     * Optional: libreadline and libhistory.  Without them, interactive
26       command editing and history features will be disabled.
27
28     * Optional: libplot (from GNU plotutils).  Without it,
29       graphing features will not work.  If you do not have it
30       installed, you must run `configure' with --without-libplot.
31
32     * Optional: GTK+ version 2.6.0 or later, plus libglade 2.0 or
33       later.  Without them, the GUI will not be built.  If you do not
34       have these installed, you must run `configure' with
35       --without-gui.
36
37 For information on differences from previous versions, please see file
38 NEWS.  Full documentation on PSPP's language can be found in the doc/
39 directory.
40           
41 Source code for the latest release of PSPP is available at
42 ftp://ftp.gnu.org/pub/gnu/pspp/.  Older versions may be obtained from
43 ftp://alpha.gnu.org/gnu/pspp/.  Development sources are available from
44 CVS at http://savannah.gnu.org/projects/pspp
45    
46 Questions and comments about using PSPP may be sent to pspp-users@gnu.org.
47 Bug reports may be filed at http://savannah.gnu.org/bugs/?group=pspp
48 or emailed to bug-gnu-pspp@gnu.org.  (We prefer the web-based system
49 because it makes it more difficult for us to lose track of bugs.)
50
51 The long term goals for PSPP are ambitious.  We wish to provide the
52 following support to users:
53
54         * All of the SPSS transformation language.  PSPP already
55           supports a large subset of it.
56
57         * All the statistical procedures that someone is willing to
58           implement, whether they exist in SPSS or not.  Currently,
59           statistical support is limited, but growing.
60
61         * Compatibility with SPSS syntax, including compatibility with
62           known bugs and warts, where it makes sense.  We also provide
63           an "enhanced" mode in certain cases where PSPP can output
64           better results that may surprise SPSS users.
65
66         * Friendly textual and graphical interfaces.  PSPP does not do
67           a good job of this yet.
68
69         * Attractive output, including graphs, in a variety of human-
70           and machine-readable formats.  PSPP currently produces
71           output in ASCII, PostScript, and HTML formats.  We will
72           enhance PSPP's output formatting in the future.
73
74         * Good documentation.  Currently the PSPP manual describes its
75           language completely, but we would like to add information on
76           how to select statistical procedures and interpret their
77           results.
78
79         * Efficient support for very large data sets.  For procedures
80           where it is practical, we wish to efficiently support data
81           sets many times larger than physical memory.  The framework
82           for this feature is already in place, but it has not been
83           tuned or extensively tested.
84
85 Over the long term, we also wish to provide support to developers who
86 wish to extend PSPP with new statistical procedures, by supplying the
87 following:
88
89         * Easy-to-use support for parsing language syntax.  Currently,
90           parsing is done by writing "recursive descent" code by hand,
91           with some support for automated parsing of the most common
92           constructs.  We wish to improve the situation by supplying a
93           more complete and flexible parser generator.
94
95         * Easy-to-use support for producing attractive output.
96           Currently, output is done by writing code to explicitly fill
97           in table cells with data.  We should be able to supply a
98           more convenient interface that also allows for providing
99           machine-readable output.
100
101         * Eventually, a plug-in interface for procedures.  Over the
102           short term, the interface between the PSPP core and
103           statistical procedures is evolving quickly enough that a
104           plug-in model does not make sense.  Over the long term, it
105           may make sense to introduce plug-ins.