pivot table procedure conceptually works
[pspp] / doc / psppire.1
1 .\" PSPP - computes sample statistics.
2 .\" Copyright (C) 2014 Free Software Foundation, Inc.
3 .\"
4 .\" This program is free software: you can redistribute it and/or modify
5 .\" it under the terms of the GNU General Public License as published by
6 .\" the Free Software Foundation, either version 3 of the License, or
7 .\" (at your option) any later version.
8 .\" 
9 .\" This program is distributed in the hope that it will be useful,
10 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
11 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 .\" GNU General Public License for more details.
13 .\" 
14 .\" You should have received a copy of the GNU General Public License
15 .\" along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 .\"
17 .TH PSPPIRE 1 "August 30, 2014" "GNU" "PSPP manual"
18 .\" Please adjust this date whenever revising the manpage.
19 .\"
20 .\" Some roff macros, for reference:
21 .\" .nh        disable hyphenation
22 .\" .hy        enable hyphenation
23 .\" .ad l      left justify
24 .\" .ad b      justify to both left and right margins
25 .\" .nf        disable filling
26 .\" .fi        enable filling
27 .\" .br        insert line break
28 .\" .sp <n>    insert n+1 empty lines
29 .\" for manpage-specific macros, see man(7)
30 .SH NAME
31 psppire \- graphical interface to pspp
32 .SH SYNOPSIS
33 .B psppire
34 .RI [ options ] " files" ...
35 .SH DESCRIPTION
36 \fBpsppire\fP is a graphical interface to \fBpspp\fP. This
37 interface allows you to enter data and variable definitions
38 interactively.  Commands may be executed in syntax form, or by
39 using the interactive dialog boxes available from the dropdown
40 menus. Up to date documentation is available via  
41 .IP
42 .B info pspp
43 .PP
44 Documentation is also available as pdf or html. On GNU/Linux based
45 systems you find this documentation in \fB/usr/share/doc/pspp\fP.
46 .SH OPTIONS
47 .TP
48 .B \-\-help
49 Show summary of options.
50 .TP
51 .B \-\-version
52 Show version of program.
53 .SH EXAMPLE
54 Create a file \fBexample.sps\fP with the following content:
55 .PP
56 .nf
57 .RS
58 * Example sps file 
59 data list 
60   / v0 to v2 1-9.
61 begin data.
62  12 12 89
63  56 12 77
64  78 12 73
65  90 91
66  37 97 85
67  52    82
68  12    79
69  26 78 76
70  29 13 71
71 end data.
72
73 examine v0
74   /plot=all.
75 .RE
76 .fi
77 .PP
78 and run psppire with
79 .IP
80 .B psppire example.sps
81 .PP
82 More examples files are in \fB/usr/share/pspp/examples\fP
83 .SH SEE ALSO
84 .BR pspp (1), pspp\-dump\-sav (1), pspp\-convert (1).
85 .SH AUTHOR
86 psppire was written by John Darrington.