1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
|
@c PSPP - a program for statistical analysis.
@c Copyright (C) 2017, 2020, 2023 Free Software Foundation, Inc.
@c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3
@c or any later version published by the Free Software Foundation;
@c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
@c A copy of the license is included in the section entitled "GNU
@c Free Documentation License".
@c
@node Utilities
@chapter Utilities
Commands that don't fit any other category are placed here.
Most of these commands are not affected by commands like @cmd{IF} and
@cmd{LOOP}:
they take effect only once, unconditionally, at the time that they are
encountered in the input.
@menu
* ADD DOCUMENT:: Add documentary text to the active dataset.
* CACHE:: Ignored for compatibility.
* CD:: Change the current directory.
* COMMENT:: Document your syntax file.
* DOCUMENT:: Document the active dataset.
* DISPLAY DOCUMENTS:: Display active dataset documents.
* DISPLAY FILE LABEL:: Display the active dataset label.
* DROP DOCUMENTS:: Remove documents from the active dataset.
* ECHO:: Write a string to the output stream.
* ERASE:: Erase a file.
* EXECUTE:: Execute pending transformations.
* FILE LABEL:: Set the active dataset's label.
* FINISH:: Terminate the @pspp{} session.
* HOST:: Temporarily return to the operating system.
* INCLUDE:: Include a file within the current one.
* INSERT:: Insert a file within the current one.
* OUTPUT:: Modify the appearance of the output.
* PERMISSIONS:: Change permissions on a file.
* PRESERVE and RESTORE:: Saving settings and restoring them later.
* SET:: Adjust @pspp{} runtime parameters.
* SHOW:: Display runtime parameters.
* SUBTITLE:: Provide a document subtitle.
* TITLE:: Provide a document title.
@end menu
@node ADD DOCUMENT
@section ADD DOCUMENT
@vindex ADD DOCUMENT
@display
ADD DOCUMENT
'line one' 'line two' @dots{} 'last line' .
@end display
@cmd{ADD DOCUMENT} adds one or more lines of descriptive commentary to
the active dataset. Documents added in this way are saved to system files.
They can be viewed using @cmd{SYSFILE INFO} or @cmd{DISPLAY
DOCUMENTS}. They can be removed from the active dataset with @cmd{DROP
DOCUMENTS}.
Each line of documentary text must be enclosed in quotation marks, and
may not be more than 80 bytes long. @xref{DOCUMENT}.
@node CACHE
@section CACHE
@vindex CACHE
@display
CACHE.
@end display
This command is accepted, for compatibility, but it has no effect.
@node CD
@section CD
@vindex CD
@cindex directory
@cindex changing directory
@display
CD 'new directory' .
@end display
@cmd{CD} changes the current directory. The new directory becomes
that specified by the command.
@node COMMENT
@section COMMENT
@vindex COMMENT
@vindex *
@display
Comment commands:
COMMENT comment text @dots{} .
*comment text @dots{} .
Comments within a line of syntax:
FREQUENCIES /VARIABLES=v0 v1 v2. /* All our categorical variables.
@end display
@cmd{COMMENT} is ignored. It is used to provide information to
the author and other readers of the @pspp{} syntax file.
@cmd{COMMENT} can extend over any number of lines. It ends at a dot
at the end of a line or a blank line. The comment may contain any
characters.
PSPP also supports comments within a line of syntax, introduced with
@samp{/*}. These comments end at the first @samp{*/} or at the end of
the line, whichever comes first. A line that contains just this kind
of comment is considered blank and ends the current command.
@node DOCUMENT
@section DOCUMENT
@vindex DOCUMENT
@display
DOCUMENT @var{documentary_text}.
@end display
@cmd{DOCUMENT} adds one or more lines of descriptive commentary to the
active dataset. Documents added in this way are saved to system files.
They can be viewed using @cmd{SYSFILE INFO} or @cmd{DISPLAY
DOCUMENTS}. They can be removed from the active dataset with @cmd{DROP
DOCUMENTS}.
Specify the @var{documentary text} following the @subcmd{DOCUMENT} keyword.
It is interpreted literally---any quotes or other punctuation marks
are included in the file.
You can extend the documentary text over as many lines as necessary,
including blank lines to separate paragraphs.
Lines are truncated at 80 bytes. Don't forget to terminate
the command with a dot at the end of a line. @xref{ADD DOCUMENT}.
@node DISPLAY DOCUMENTS
@section DISPLAY DOCUMENTS
@vindex DISPLAY DOCUMENTS
@display
DISPLAY DOCUMENTS.
@end display
@cmd{DISPLAY DOCUMENTS} displays the documents in the active dataset. Each
document is preceded by a line giving the time and date that it was
added. @xref{DOCUMENT}.
@node DISPLAY FILE LABEL
@section DISPLAY FILE LABEL
@vindex DISPLAY FILE LABEL
@display
DISPLAY FILE LABEL.
@end display
@cmd{DISPLAY FILE LABEL} displays the file label contained in the
active dataset,
if any. @xref{FILE LABEL}.
This command is a @pspp{} extension.
@node DROP DOCUMENTS
@section DROP DOCUMENTS
@vindex DROP DOCUMENTS
@display
DROP DOCUMENTS.
@end display
@cmd{DROP DOCUMENTS} removes all documents from the active dataset.
New documents can be added with @cmd{DOCUMENT} (@pxref{DOCUMENT}).
@cmd{DROP DOCUMENTS} changes only the active dataset. It does not modify any
system files stored on disk.
@node ECHO
@section ECHO
@vindex ECHO
@display
ECHO 'arbitrary text' .
@end display
Use @cmd{ECHO} to write arbitrary text to the output stream. The text should be enclosed in quotation marks following the normal rules for string tokens (@pxref{Tokens}).
@node ERASE
@section ERASE
@vindex ERASE
@display
ERASE FILE @var{file_name}.
@end display
@cmd{ERASE FILE} deletes a file from the local file system.
@var{file_name} must be quoted.
This command cannot be used if the SAFER (@pxref{SET}) setting is active.
@node EXECUTE
@section EXECUTE
@vindex EXECUTE
@display
EXECUTE.
@end display
@cmd{EXECUTE} causes the active dataset to be read and all pending
transformations to be executed.
@node FILE LABEL
@section FILE LABEL
@vindex FILE LABEL
@display
FILE LABEL @var{file_label}.
@end display
@cmd{FILE LABEL} provides a title for the active dataset. This
title is saved into system files and portable files that are
created during this @pspp{} run.
@var{file_label} should not be quoted.
If quotes are included, they are literally interpreted and become part of the file label.
@node FINISH
@section FINISH
@vindex FINISH
@display
FINISH.
@end display
@cmd{FINISH} terminates the current @pspp{} session and returns
control to the operating system.
@node HOST
@section HOST
@vindex HOST
In the syntax below, the square brackets must be included in the
command syntax and do not indicate that that their contents are
optional.
@display
HOST COMMAND=['@var{command}'...]
TIMELIMIT=@var{secs}.
@end display
@cmd{HOST} executes one or more commands, each provided as a string in
the required @subcmd{COMMAND} subcommand, in the shell of the
underlying operating system. PSPP runs each command in a separate
shell process and waits for it to finish before running the next one.
If a command fails (with a nonzero exit status, or because it is
killed by a signal), then PSPP does not run any remaining commands.
PSPP provides @file{/dev/null} as the shell's standard input. If a
process needs to read from stdin, redirect from a file or device, or
use a pipe.
PSPP displays the shell's standard output and standard error as PSPP
output. Redirect to a file or @code{/dev/null} or another device if
this is not desired.
The following example runs @code{rsync} to copy a file from a remote
server to the local file @file{data.txt}, writing @code{rsync}'s own
output to @file{rsync-log.txt}. PSPP displays the command's error
output, if any. If @code{rsync} needs to prompt the user (@i{e.g.}@: to
obtain a password), the command fails. Only if the @code{rsync}
succeeds, PSPP then runs the @code{sha512sum} command.
@example
HOST COMMAND=['rsync remote:data.txt data.txt > rsync-log.txt'
'sha512sum -c data.txt.sha512sum].
@end example
By default, PSPP waits as long as necessary for the series of commands
to complete. Use the optional @subcmd{TIMELIMIT} subcommand to limit
the execution time to the specified number of seconds.
PSPP built for mingw does not support all the features of
@subcmd{HOST}.
PSPP rejects this command if the SAFER (@pxref{SET}) setting is
active.
@node INCLUDE
@section INCLUDE
@vindex INCLUDE
@display
INCLUDE [FILE=]'@var{file_name}' [ENCODING='@var{encoding}'].
@end display
@cmd{INCLUDE} causes the @pspp{} command processor to read an
additional command file as if it were included bodily in the current
command file.
If errors are encountered in the included file, then command
processing stops and no more commands are processed.
Include files may be nested to any depth, up to the limit of available
memory.
The @cmd{INSERT} command (@pxref{INSERT}) is a more flexible
alternative to @cmd{INCLUDE}. An @cmd{INCLUDE} command acts the same as
@cmd{INSERT} with @subcmd{ERROR=STOP CD=NO SYNTAX=BATCH} specified.
The optional @subcmd{ENCODING} subcommand has the same meaning as with @cmd{INSERT}.
@node INSERT
@section INSERT
@vindex INSERT
@display
INSERT [FILE=]'@var{file_name}'
[CD=@{NO,YES@}]
[ERROR=@{CONTINUE,STOP@}]
[SYNTAX=@{BATCH,INTERACTIVE@}]
[ENCODING=@{LOCALE, '@var{charset_name}'@}].
@end display
@cmd{INSERT} is similar to @cmd{INCLUDE} (@pxref{INCLUDE})
but somewhat more flexible.
It causes the command processor to read a file as if it were embedded in the
current command file.
If @subcmd{CD=YES} is specified, then before including the file, the
current directory becomes the directory of the included
file.
The default setting is @samp{CD=NO}.
Note that this directory remains current until it is
changed explicitly (with the @cmd{CD} command, or a subsequent
@cmd{INSERT} command with the @samp{CD=YES} option).
It does not revert to its original setting even after the included
file is finished processing.
If @subcmd{ERROR=STOP} is specified, errors encountered in the
inserted file causes processing to immediately cease.
Otherwise processing continues at the next command.
The default setting is @subcmd{ERROR=CONTINUE}.
If @subcmd{SYNTAX=INTERACTIVE} is specified then the syntax contained in
the included file must conform to interactive syntax
conventions. @xref{Syntax Variants}.
The default setting is @subcmd{SYNTAX=BATCH}.
@subcmd{ENCODING} optionally specifies the character set used by the included
file. Its argument, which is not case-sensitive, must be in one of
the following forms:
@table @asis
@item @subcmd{LOCALE}
The encoding used by the system locale, or as overridden by the
@cmd{SET} command (@pxref{SET}). On GNU/Linux and other Unix-like systems,
environment variables, @i{e.g.}@: @env{LANG} or @env{LC_ALL}, determine the
system locale.
@item @var{charset_name}
One of the character set names listed by @acronym{IANA} at
@uref{http://www.iana.org/assignments/character-sets}. Some examples
are @code{ASCII} (United States), @code{ISO-8859-1} (western Europe),
@code{EUC-JP} (Japan), and @code{windows-1252} (Windows). Not all
systems support all character sets.
@item @code{Auto,@var{encoding}}
Automatically detects whether a syntax file is encoded in an Unicode
encoding such as UTF-8, UTF-16, or UTF-32. If it is not, then @pspp{}
generally assumes that the file is encoded in @var{encoding} (an @acronym{IANA}
character set name). However, if @var{encoding} is UTF-8, and the
syntax file is not valid UTF-8, @pspp{} instead assumes that the file
is encoded in @code{windows-1252}.
For best results, @var{encoding} should be an @acronym{ASCII}-compatible
encoding (the most common locale encodings are all @acronym{ASCII}-compatible),
because encodings that are not @acronym{ASCII} compatible cannot be
automatically distinguished from UTF-8.
@item @code{Auto}
@item @code{Auto,Locale}
Automatic detection, as above, with the default encoding taken from
the system locale or the setting on @subcmd{SET LOCALE}.
@end table
When ENCODING is not specified, the default is taken from the
@option{--syntax-encoding} command option, if it was specified, and
otherwise it is @code{Auto}.
@node OUTPUT
@section OUTPUT
@vindex OUTPUT
@cindex precision, of output
@cindex decimal places
@display
OUTPUT MODIFY
/SELECT TABLES
/TABLECELLS SELECT = [ @var{class}... ]
FORMAT = @var{fmt_spec}.
@end display
@note{In the above synopsis the characters @samp{[} and @samp{]} are literals.
They must appear in the syntax to be interpreted.}
@cmd{OUTPUT} changes the appearance of the tables in which results are
printed. In particular, it can be used to set the format and precision
to which results are displayed.
After running this command, the default table appearance parameters
will have been modified and each new output table generated uses
the new parameters.
Following @code{/TABLECELLS SELECT =} a list of cell classes must
appear, enclosed in square brackets. This list determines the classes
of values should be selected for modification. Each class can be:
@table @asis
@item RESIDUAL
Residual values. Default: @t{F40.2}.
@item CORRELATION
Correlations. Default: @t{F40.3}.
@item PERCENT
Percentages. Default: @t{PCT40.1}.
@item SIGNIFICANCE
Significance of tests (p-values). Default: @t{F40.3}.
@item COUNT
Counts or sums of weights. For a weighted data set, the default is
the weight variable's print format. For an unweighted data set, the
default is F40.0.
@end table
For most other numeric values that appear in tables, @code{SET FORMAT}
may be used to specify the format (@pxref{SET FORMAT}).
The value of @var{fmt_spec} must be a valid output format (@pxref{Input and Output Formats}).
Note that not all possible formats are meaningful for all classes.
@node PERMISSIONS
@section PERMISSIONS
@vindex PERMISSIONS
@cindex mode
@cindex file mode
@cindex changing file permissions
@display
PERMISSIONS
FILE='@var{file_name}'
/PERMISSIONS = @{READONLY,WRITEABLE@}.
@end display
@cmd{PERMISSIONS} changes the permissions of a file.
There is one mandatory subcommand which specifies the permissions to
which the file should be changed.
If you set a file's permission to @subcmd{READONLY}, then the file
will become unwritable either by you or anyone else on the system.
If you set the permission to @subcmd{WRITEABLE}, then the file becomes
writeable by you; the permissions afforded to others are unchanged.
This command cannot be used if the @subcmd{SAFER} (@pxref{SET})
setting is active.
@node PRESERVE and RESTORE
@section PRESERVE and RESTORE
@vindex PRESERVE
@vindex RESTORE
@display
PRESERVE.
@dots{}
RESTORE.
@end display
@cmd{PRESERVE} saves all of the settings that @cmd{SET} (@pxref{SET})
can adjust. A later @cmd{RESTORE} command restores those settings.
@cmd{PRESERVE} can be nested up to five levels deep.
@node SET
@section SET
@vindex SET
@display
SET
(data input)
/BLANKS=@{SYSMIS,'.',number@}
/DECIMAL=@{DOT,COMMA@}
/FORMAT=@var{fmt_spec}
/EPOCH=@{AUTOMATIC,@var{year}@}
/RIB=@{NATIVE,MSBFIRST,LSBFIRST,VAX@}
/RRB=@{NATIVE,ISL,ISB,IDL,IDB,VF,VD,VG,ZS,ZL@}
(interaction)
/MXERRS=@var{max_errs}
/MXWARNS=@var{max_warnings}
/WORKSPACE=@var{workspace_size}
(syntax execution)
/LOCALE='@var{locale}'
/MXLOOPS=@var{max_loops}
/SEED=@{RANDOM,@var{seed_value}@}
/UNDEFINED=@{WARN,NOWARN@}
/FUZZBITS=@var{fuzzbits}
/SCALEMIN=@var{count}
(data output)
/CC@{A,B,C,D,E@}=@{'@var{npre},@var{pre},@var{suf},@var{nsuf}','@var{npre}.@var{pre}.@var{suf}.@var{nsuf}'@}
/DECIMAL=@{DOT,COMMA@}
/FORMAT=@var{fmt_spec}
/LEADZERO=@{ON,OFF@}
/MDISPLAY=@{TEXT,TABLES@}
/SMALL=@var{number}
/SUMMARY=@{NONE,@var{comment}@}
/WIB=@{NATIVE,MSBFIRST,LSBFIRST,VAX@}
/WRB=@{NATIVE,ISL,ISB,IDL,IDB,VF,VD,VG,ZS,ZL@}
(output routing)
/ERRORS=@{ON,OFF,TERMINAL,LISTING,BOTH,NONE@}
/MESSAGES=@{ON,OFF,TERMINAL,LISTING,BOTH,NONE@}
/PRINTBACK=@{ON,OFF,TERMINAL,LISTING,BOTH,NONE@}
/RESULTS=@{ON,OFF,TERMINAL,LISTING,BOTH,NONE@}
(output driver options)
/HEADERS=@{NO,YES,BLANK@}
/LENGTH=@{NONE,@var{n_lines}@}
/WIDTH=@{NARROW,WIDTH,@var{n_characters}@}
/TNUMBERS=@{VALUES,LABELS,BOTH@}
/TVARS=@{NAMES,LABELS,BOTH@}
/TLOOK=@{NONE,@var{file}@}
(logging)
/JOURNAL=@{ON,OFF@} ['@var{file_name}']
(system files)
/SCOMPRESSION=@{ON,OFF@}
(miscellaneous)
/SAFER=ON
/LOCALE='@var{string}'
(macros)
/MEXPAND=@{ON,OFF@}
/MPRINT=@{ON,OFF@}
/MITERATE=@var{number}
/MNEST=@var{number}
(settings not yet implemented, but accepted and ignored)
/BASETEXTDIRECTION=@{AUTOMATIC,RIGHTTOLEFT,LEFTTORIGHT@}
/BLOCK='@var{c}'
/BOX=@{'@var{xxx}','@var{xxxxxxxxxxx}'@}
/CACHE=@{ON,OFF@}
/CELLSBREAK=@var{number}
/COMPRESSION=@{ON,OFF@}
/CMPTRANS=@{ON,OFF@}
/HEADER=@{NO,YES,BLANK@}
@end display
@cmd{SET} allows the user to adjust several parameters relating to
@pspp{}'s execution. Since there are many subcommands to this command, its
subcommands are examined in groups.
For subcommands that take boolean values, @subcmd{ON} and @subcmd{YES} are synonymous,
as are @subcmd{OFF} and @subcmd{NO}, when used as subcommand values.
The data input subcommands affect the way that data is read from data
files. The data input subcommands are
@table @asis
@item BLANKS
@anchor{SET BLANKS}
This is the value assigned to an item data item that is empty or
contains only white space. An argument of SYSMIS or '.' causes the
system-missing value to be assigned to null items. This is the
default. Any real value may be assigned.
@item DECIMAL
@anchor{SET DECIMAL}
This value may be set to @subcmd{DOT} or @subcmd{COMMA}.
Setting it to @subcmd{DOT} causes the decimal point character to be
@samp{.} and the grouping character to be @samp{,}.
Setting it to @subcmd{COMMA}
causes the decimal point character to be @samp{,} and the grouping
character to be @samp{.}.
If the setting is @subcmd{COMMA}, then @samp{,} is not treated
as a field separator in the @cmd{DATA LIST} command (@pxref{DATA LIST}).
The default value is determined from the system locale.
@item FORMAT
@anchor{SET FORMAT}
Allows the default numeric input/output format to be specified. The
default is F8.2. @xref{Input and Output Formats}.
@item EPOCH
@anchor{SET EPOCH}
Specifies the range of years used when a 2-digit year is read from a
data file or used in a date construction expression (@pxref{Date
Construction}). If a 4-digit year is specified for the epoch, then
2-digit years are interpreted starting from that year, known as the
epoch. If @subcmd{AUTOMATIC} (the default) is specified, then the epoch begins
69 years before the current date.
@item RIB
@anchor{SET RIB}
@pspp{} extension to set the byte ordering (endianness) used for reading
data in IB or PIB format (@pxref{Binary and Hexadecimal Numeric
Formats}). In @subcmd{MSBFIRST} ordering, the most-significant byte appears at
the left end of a IB or PIB field. In @subcmd{LSBFIRST} ordering, the
least-significant byte appears at the left end. @subcmd{VAX} ordering is like
@subcmd{MSBFIRST}, except that each pair of bytes is in reverse order. @subcmd{NATIVE},
the default, is equivalent to @subcmd{MSBFIRST} or @subcmd{LSBFIRST} depending on the
native format of the machine running @pspp{}.
@item RRB
@anchor{SET RRB}
@pspp{} extension to set the floating-point format used for reading data in
RB format (@pxref{Binary and Hexadecimal Numeric Formats}). The
possibilities are:
@table @asis
@item NATIVE
The native format of the machine running @pspp{}. Equivalent to either IDL
or IDB.
@item ISL
32-bit IEEE 754 single-precision floating point, in little-endian byte
order.
@item ISB
32-bit IEEE 754 single-precision floating point, in big-endian byte
order.
@item IDL
64-bit IEEE 754 double-precision floating point, in little-endian byte
order.
@item IDB
64-bit IEEE 754 double-precision floating point, in big-endian byte
order.
@item VF
32-bit VAX F format, in VAX-endian byte order.
@item VD
64-bit VAX D format, in VAX-endian byte order.
@item VG
64-bit VAX G format, in VAX-endian byte order.
@item ZS
32-bit IBM Z architecture short format hexadecimal floating point, in
big-endian byte order.
@item ZL
64-bit IBM Z architecture long format hexadecimal floating point, in
big-endian byte order.
Z architecture also supports IEEE 754 floating point. The ZS and ZL
formats are only for use with very old input files.
@end table
The default is NATIVE.
@end table
Interaction subcommands affect the way that @pspp{} interacts with an
online user. The interaction subcommands are
@table @asis
@item MXERRS
The maximum number of errors before @pspp{} halts processing of the current
command file. The default is 50.
@item MXWARNS
The maximum number of warnings + errors before @pspp{} halts processing the
current command file.
The special value of zero means that all warning situations should be ignored.
No warnings are issued, except a single initial warning advising you
that warnings will not be given.
The default value is 100.
@end table
Syntax execution subcommands control the way that @pspp{} commands
execute. The syntax execution subcommands are
@table @asis
@item LOCALE
Overrides the system locale for the purpose of reading and writing
syntax and data files. The argument should be a locale name in the
general form @code{@var{language}_@var{country}.@var{encoding}}, where @var{language}
and @var{country} are 2-character language and country abbreviations,
respectively, and @var{encoding} is an @acronym{IANA} character set name.
Example locales are @code{en_US.UTF-8} (UTF-8 encoded English as
spoken in the United States) and @code{ja_JP.EUC-JP} (EUC-JP encoded
Japanese as spoken in Japan).
@item MXLOOPS
@anchor{SET MXLOOPS}
The maximum number of iterations for an uncontrolled loop
(@pxref{LOOP}), and for any loop in the matrix language (@pxref{Matrix
LOOP and BREAK Commands}). The default @var{max_loops} is 40.
@item SEED
@anchor{SET SEED}
The initial pseudo-random number seed. Set it to a real number or to
RANDOM, to obtain an initial seed from the current time of day.
@item UNDEFINED
Currently not used.
@item FUZZBITS
@anchor{SET FUZZBITS}
The maximum number of bits of errors in the least-significant places
to accept for rounding up a value that is almost halfway between two
possibilities for rounding with the RND operator (@pxref{Miscellaneous
Mathematics}). The default @var{fuzzbits} is 6.
@item SCALEMIN
@anchor{SET SCALEMIN}
The minimum number of distinct valid values for @pspp{} to assume that
a variable has a scale measurement level. @xref{Measurement Level}.
@item WORKSPACE
The maximum amount of memory (in kilobytes) that @pspp{} uses to
store data being processed. If memory in excess of the workspace size
is required, then @pspp{} starts to use temporary files to store
the data. Setting a higher value means that procedures
run faster, but may cause other applications to run slower.
On platforms without virtual memory management, setting a very large
workspace may cause @pspp{} to abort.
@cindex workspace
@cindex memory, amount used to store cases
@end table
Data output subcommands affect the format of output data. These
subcommands are
@table @asis
@item CCA
@itemx CCB
@itemx CCC
@itemx CCD
@itemx CCE
@anchor{CCx Settings}
Set up custom currency formats. @xref{Custom Currency Formats}, for
details.
@item DECIMAL
The default @subcmd{DOT} setting causes the decimal point character to be
@samp{.}. A setting of @subcmd{COMMA} causes the decimal point character to be
@samp{,}.
@item FORMAT
Allows the default numeric input/output format to be specified. The
default is F8.2. @xref{Input and Output Formats}.
@item LEADZERO
@anchor{SET LEADZERO}
Controls whether numbers with magnitude less than one are displayed
with a zero before the decimal point. For example, with @code{SET
LEADZERO=OFF}, which is the default, one-half is shown as 0.5, and
with @code{SET LEADZERO=ON}, it is shown as .5. This setting affects
only the @code{F}, @code{COMMA}, and @code{DOT} formats.
@item MDISPLAY
@anchor{SET MDISPLAY}
Controls how the @code{PRINT} command within
@code{MATRIX}@dots{}@code{END MATRIX} outputs matrices. With the
default @subcmd{TEXT}, @code{PRINT} outputs matrices as text. Change
this setting to @code{TABLES} to instead output matrices as pivot
tables. @xref{Matrix PRINT Command}, for more information.
@item SMALL
This controls how @pspp{} formats small numbers in pivot tables, in
cases where @pspp{} does not otherwise have a well-defined format for
the numbers. When such a number has a magnitude less than the value
set here, @pspp{} formats the number in scientific notation;
otherwise, it formats it in standard notation. The default is 0.0001.
Set a value of 0 to disable scientific notation.
@item SUMMARY
The @subcmd{SUMMARY} option sets the comment string which will appear in all
generated tables until the next @subcmd{SUMMARY} is issued. If the special
value @subcmd{NONE} is specified, then no comment will appear.
These comment strings can be seen in the graphical user interface by placing
the pointer over the table.
If @var{comment} contains any of the following substrings, they will be
subsituted as follows:
@table @code
@item \n
A line break.
@item )DATE
The current date in the form @samp{dd-mmm-yyyy}
@item )ADATE
The current date in the form @samp{mm/dd/yyyy}
@item )SDATE
The current date in the form @samp{yyyy/mm/dd}
@item )EDATE
The current date in the form @samp{dd.mm.yyyy}
@item )TIME
The current 12 hour clock time in the form @samp{hh:mm:ss}
@item )ETIME
The current 24 hour clock time in the form @samp{hh:mm:ss}
@end table
@item WIB
@anchor{SET WIB}
@pspp{} extension to set the byte ordering (endianness) used for writing
data in IB or PIB format (@pxref{Binary and Hexadecimal Numeric
Formats}). In @subcmd{MSBFIRST} ordering, the most-significant byte appears at
the left end of a IB or PIB field. In @subcmd{LSBFIRST} ordering, the
least-significant byte appears at the left end. @subcmd{VAX} ordering is like
@subcmd{MSBFIRST}, except that each pair of bytes is in reverse order. @subcmd{NATIVE},
the default, is equivalent to @subcmd{MSBFIRST} or @subcmd{LSBFIRST} depending on the
native format of the machine running @pspp{}.
@item WRB
@anchor{SET WRB}
@pspp{} extension to set the floating-point format used for writing data in
RB format (@pxref{Binary and Hexadecimal Numeric Formats}). The choices
are the same as @subcmd{SET RIB}. The default is @subcmd{NATIVE}.
@end table
In the @pspp{} text-based interface, the output routing subcommands
affect where output is sent. The following values are allowed for
each of these subcommands:
@table @asis
@item OFF
@item NONE
Discard this kind of output.
@item TERMINAL
Write this output to the terminal, but not to listing files and other
output devices.
@item LISTING
Write this output to listing files and other output devices, but not
to the terminal.
@item ON
@itemx BOTH
Write this type of output to all output devices.
@end table
These output routing subcommands are:
@table @asis
@item ERRORS
Applies to error and warning messages. The default is @subcmd{BOTH}.
@item MESSAGES
Applies to notes. The default is @subcmd{BOTH}.
@item PRINTBACK
Determines whether the syntax used for input is printed back as part
of the output. The default is @subcmd{NONE}.
@item RESULTS
Applies to everything not in one of the above categories, such as the
results of statistical procedures. The default is @subcmd{BOTH}.
@end table
These subcommands have no effect on output in the @pspp{} GUI
environment.
Output driver option subcommands affect output drivers' settings. These
subcommands are
@table @asis
@item HEADERS
@itemx LENGTH
@itemx WIDTH
@itemx TNUMBERS
The @subcmd{TNUMBERS} option sets the way in which values are displayed in output tables.
The valid settings are @subcmd{VALUES}, @subcmd{LABELS} and @subcmd{BOTH}.
If @subcmd{TNUMBERS} is set to @subcmd{VALUES}, then all values are displayed with their literal value
(which for a numeric value is a number and for a string value an alphanumeric string).
If @subcmd{TNUMBERS} is set to @subcmd{LABELS}, then values are displayed using their assigned labels if any.
(@xref{VALUE LABELS}.)
If the value has no label, then the literal value is used for display.
If @subcmd{TNUMBERS} is set to @subcmd{BOTH}, then values are displayed with both their label
(if any) and their literal value in parentheses.
@item TVARS
@anchor{SET TVARS}
The @subcmd{TVARS} option sets the way in which variables are displayed in output tables.
The valid settings are @subcmd{NAMES}, @subcmd{LABELS} and @subcmd{BOTH}.
If @subcmd{TVARS} is set to @subcmd{NAMES}, then all variables are displayed using their names.
If @subcmd{TVARS} is set to @subcmd{LABELS}, then variables are displayed using their label if one
has been set. If no label has been set, then the name is used.
(@xref{VARIABLE LABELS}.)
If @subcmd{TVARS} is set to @subcmd{BOTH}, then variables are displayed with both their label
(if any) and their name in parentheses.
@item TLOOK
The @subcmd{TLOOK} option sets the style used for subsequent table
output. Specifying @subcmd{NONE} makes @pspp{} use the default
built-in style. Otherwise, specifying @var{file} makes @pspp{} search
for an @file{.stt} or @file{.tlo} file in the same way as specifying
@option{--table-look=@var{file}} the @pspp{} command line (@pxref{Main
Options}).
@end table
@cindex headers
@cindex length
@cindex pager
@cindex width
@cindex tnumbers
These subcommands affect journaling, also called logging. When
journaling is enabled, @pspp{} writes the commands that it executes,
plus any errors or other diagostics that it outputs, to a text file,
called the @dfn{journal} file.
@pspp{} enables journaling by default when it runs interactively in a
terminal or in the PSPPIRE GUI. In the GUI, use @clicksequence{Edit
@click{} Options@dots{}} to view or override the default location or
to disable journaling. From syntax, use @code{SHOW JOURNAL} to see
the journal's location and whether it is enabled.
@table @asis
@item JOURNAL
@itemx LOG
Specify @subcmd{ON} to enable the journal and @subcmd{OFF} to disable
it. Specify a file name to set the name of the journal file.
@end table
System file subcommands affect the default format of system files
produced by @pspp{}. These subcommands are
@table @asis
@item SCOMPRESSION
Whether system files created by @cmd{SAVE} or @cmd{XSAVE} are
compressed by default. The default is @subcmd{ON}.
@end table
Security subcommands affect the operations that commands are allowed to
perform. The security subcommands are
@table @asis
@item SAFER
Setting this option disables the following operations:
@itemize @bullet
@item
The @cmd{ERASE} command.
@item
The @cmd{HOST} command.
@item
The @cmd{PERMISSIONS} command.
@item
Pipes (file names beginning or ending with @samp{|}).
@end itemize
Be aware that this setting does not guarantee safety (commands can still
overwrite files, for instance) but it is an improvement.
When set, this setting cannot be reset during the same session, for
obvious security reasons.
@item LOCALE
@cindex locale
@cindex encoding, characters
This item is used to set the default character encoding.
The encoding may be specified either as an encoding name or alias
(see @url{http://www.iana.org/assignments/character-sets}), or
as a locale name.
If given as a locale name, only the character encoding of the
locale is relevant.
System files written by @pspp{} use this encoding.
System files read by @pspp{}, for which the encoding is unknown, are
interpreted using this encoding.
The full list of valid encodings and locale names/alias are operating system
dependent.
The following are all examples of acceptable syntax on common GNU/Linux
systems.
@example
SET LOCALE='iso-8859-1'.
SET LOCALE='ru_RU.cp1251'.
SET LOCALE='japanese'.
@end example
Contrary to intuition, this command does not affect any aspect
of the system's locale.
@end table
The following subcommands affect the interpretation of macros.
@table @asis
@item MEXPAND
@anchor{SET MEXPAND}
Controls whether macros are expanded. The default is ON.
@item MPRINT
@anchor{SET MPRINT}
Controls whether the expansion of macros is included in output. This
is separate from whether command syntax in general is included in
output. The default is OFF.
@item MITERATE
@anchor{SET MITERATE}
Limits the number of iterations executed in @code{!DO} loops within
macros. This does not affect other language constructs such as
@cmd{LOOP}. This must be set to a positive integer. The default is
1000.
@item MNEST
@anchor{SET MNEST}
Limits the number of levels of nested macro expansions. This must be
set to a positive integer. The default is 50.
@end table
The following subcommands are not yet implemented, but PSPP accepts
them and ignores the settings.
@table @asis
@item BASETEXTDIRECTION
@itemx BLOCK
@itemx BOX
@itemx CACHE
@itemx CELLSBREAK
@itemx COMPRESSION
@itemx CMPTRANS
@itemx HEADER
@end table
@node SHOW
@section SHOW
@vindex SHOW
@display
SHOW
[ALL]
[BLANKS]
[CC]
[CCA]
[CCB]
[CCC]
[CCD]
[CCE]
[COPYING]
[DECIMAL]
[DIRECTORY]
[ENVIRONMENT]
[FORMAT]
[FUZZBITS]
[LENGTH]
[MEXPAND]
[MPRINT]
[MITERATE]
[MNEST]
[MXERRS]
[MXLOOPS]
[MXWARNS]
[N]
[SCOMPRESSION]
[SYSTEM]
[TEMPDIR]
[UNDEFINED]
[VERSION]
[WARRANTY]
[WEIGHT]
[WIDTH]
@end display
@cmd{SHOW} can be used to display the current state of @pspp{}'s execution
parameters. Parameters that can be changed using @cmd{SET}
(@pxref{SET}), can be examined using @cmd{SHOW} using the subcommand
with the same name. @cmd{SHOW} supports the following additional
subcommands:
@table @asis
@item @subcmd{ALL}
Show all settings.
@item @subcmd{CC}
Show all custom currency settings (@subcmd{CCA} through @subcmd{CCE}).
@item @subcmd{DIRECTORY}
Shows the current working directory.
@item @subcmd{ENVIRONMENT}
Shows the operating system details.
@item @subcmd{N}
Reports the number of cases in the active dataset. The reported number is not
weighted. If no dataset is defined, then @samp{Unknown} is reported.
@item @subcmd{SYSTEM}
Shows information about how PSPP was built. This information is
useful in bug reports. @xref{Bugs}, for details.
@item @subcmd{TEMPDIR}
Shows the path of the directory where temporary files are stored.
@item @subcmd{VERSION}
Shows the version of this installation of @pspp{}.
@item @subcmd{WARRANTY}
Show details of the lack of warranty for @pspp{}.
@item @subcmd{COPYING} / @subcmd{LICENSE}
Display the terms of @pspp{}'s copyright licence (@pxref{License}).
@end table
Specifying @cmd{SHOW} without any subcommands is equivalent to @subcmd{SHOW ALL}.
@node SUBTITLE
@section SUBTITLE
@vindex SUBTITLE
@display
SUBTITLE '@var{subtitle_string}'.
or
SUBTITLE @var{subtitle_string}.
@end display
@cmd{SUBTITLE} provides a subtitle to a particular @pspp{}
run. This subtitle appears at the top of each output page below the
title, if headers are enabled on the output device.
Specify a subtitle as a string in quotes. The alternate syntax that did
not require quotes is now obsolete. If it is used then the subtitle is
converted to all uppercase.
@node TITLE
@section TITLE
@vindex TITLE
@display
TITLE '@var{title_string}'.
or
TITLE @var{title_string}.
@end display
@cmd{TITLE} provides a title to a particular @pspp{} run.
This title appears at the top of each output page, if headers are enabled
on the output device.
Specify a title as a string in quotes. The alternate syntax that did
not require quotes is now obsolete. If it is used then the title is
converted to all uppercase.
|