[an error occurred while processing this directive]
| ( ! ) Warning: include(../statistical_topmenu.html) [function.include.php]: failed to open stream: No such file or directory in /afs/iastate.edu/virtual/wwwstat/WWW/resources/software/spss/index.html on line 15 | ||||
|---|---|---|---|---|
| Call Stack | ||||
| # | Time | Memory | Function | Location |
| 1 | 0.0158 | 60288 | {main}( ) | ../index.html:0 |
| ( ! ) Warning: include() [function.include.php]: Failed opening '../statistical_topmenu.html' for inclusion (include_path='.') in /afs/iastate.edu/virtual/wwwstat/WWW/resources/software/spss/index.html on line 15 | ||||
|---|---|---|---|---|
| Call Stack | ||||
| # | Time | Memory | Function | Location |
| 1 | 0.0158 | 60288 | {main}( ) | ../index.html:0 |
|
SPSS is a statistical package designed for the social sciences. It is available on Project Vincent and can be opened by entering the following commands.
vincent% add spss vincent% spss
If you wish, you can run SPSS in a "batch mode" connect to a Project Vincent workstation using a program such as Hummingbird Telnet which is available from Scout in Durham Center.
To enter a SPSS program remotely, you need to use an editor such as emacs, joe, or vi to create a new SPSS program (the series of SPSS statements that you want to be executed.) The name of the file under which you stored these statements should be used in the command below (in place of prog1.spss).
To run SPSS from a PC, try this:
% add spss % spss -m < prog1.spss > prog1.list &
The & will run spss in background mode. When spss is done running, it will save the output in prog1.list. Then you can use a Unix "more" or "pg" command to look at the output, or you can use "emacs", "joe", or "vi" to selectively pick off the output you need for printing.
If SPSS complains about not having enough memory, you can ask for additional memory by including the -s option on the command. If you wanted 5 megabytes, the command would be:
% spss -m < prog1.spss > prog1.list -s 5M &