Add list of prerequisites.
[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 have
34       these installed, you must run `configure' with --without-gui.
35
36 For information on differences from previous versions, please see file
37 NEWS.  Full documentation on PSPP's language can be found in the doc/
38 directory.
39           
40 Source code for the latest release of PSPP is available at
41 ftp://ftp.gnu.org/pub/gnu/pspp/.  Older versions may be obtained from
42 ftp://alpha.gnu.org/gnu/pspp/.  Development sources are available from
43 CVS at http://savannah.gnu.org/projects/pspp
44    
45 Questions and comments about using PSPP may be sent to pspp-users@gnu.org.
46 Bug reports may be filed at http://savannah.gnu.org/bugs/?group=pspp
47 or emailed to bug-gnu-pspp@gnu.org.  (We prefer the web-based system
48 because it makes it more difficult for us to lose track of bugs.)
49
50 The long term goals for PSPP are ambitious.  We wish to provide the
51 following support to users:
52
53         * All of the SPSS transformation language.  PSPP already
54           supports a large subset of it.
55
56         * All the statistical procedures that someone is willing to
57           implement, whether they exist in SPSS or not.  Currently,
58           statistical support is limited, but growing.
59
60         * Compatibility with SPSS syntax, including compatibility with
61           known bugs and warts, where it makes sense.  We also provide
62           an "enhanced" mode in certain cases where PSPP can output
63           better results that may surprise SPSS users.
64
65         * Friendly textual and graphical interfaces.  PSPP does not do
66           a good job of this yet.
67
68         * Attractive output, including graphs, in a variety of human-
69           and machine-readable formats.  PSPP currently produces
70           output in ASCII, PostScript, and HTML formats.  We will
71           enhance PSPP's output formatting in the future.
72
73         * Good documentation.  Currently the PSPP manual describes its
74           language completely, but we would like to add information on
75           how to select statistical procedures and interpret their
76           results.
77
78         * Efficient support for very large data sets.  For procedures
79           where it is practical, we wish to efficiently support data
80           sets many times larger than physical memory.  The framework
81           for this feature is already in place, but it has not been
82           tuned or extensively tested.
83
84 Over the long term, we also wish to provide support to developers who
85 wish to extend PSPP with new statistical procedures, by supplying the
86 following:
87
88         * Easy-to-use support for parsing language syntax.  Currently,
89           parsing is done by writing "recursive descent" code by hand,
90           with some support for automated parsing of the most common
91           constructs.  We wish to improve the situation by supplying a
92           more complete and flexible parser generator.
93
94         * Easy-to-use support for producing attractive output.
95           Currently, output is done by writing code to explicitly fill
96           in table cells with data.  We should be able to supply a
97           more convenient interface that also allows for providing
98           machine-readable output.
99
100         * Eventually, a plug-in interface for procedures.  Over the
101           short term, the interface between the PSPP core and
102           statistical procedures is evolving quickly enough that a
103           plug-in model does not make sense.  Over the long term, it
104           may make sense to introduce plug-ins.