minitab at the default system prompt. You will see the
following header:
MINITAB Statistical Software, Enhanced Version Release 9.1 for SUN (C) Copyright 1992 Minitab Inc. - All Rights Reserved DEC. 14, 2001 - UNIVERSITY OF ARIZONA Worksheet size: 100000 cells For information on: Type: -------------------------- --------------- How to use Minitab HELP Customer service HELP OVERVIEW 14 Documentation HELP OVERVIEW 15 What's new in this release NEWS MTB>Enter commands on the line which starts with
MTB>.
HELP
OVERVIEW at the MTB> prompt. This will give a general
introduction to Minitab and present information on command syntax.
HELP COMMANDS at the MTB> prompt.
HELP
followed by the name of the topic, e.g., HELP REGRESSION.
HELP
COMMANDS 20.
STOP.
SET, REGRESS, DESCRIBE. You may
enter extra words into a command, but you must enter keywords in the
appropriate order. For example, SET C1 and SET THESE
VALUES INTO C1 will both work correctly. You must be sure that the
word SET precedes the name of the variable.
HELP OVERVIEW.
SET command may be used to enter all the data for a
single variable:
MTB > set c1 DATA> 2.5 3.6 7.1 4.8 DATA> end
C1 now contains the values 2.5, 3.6, 7.1, and 4.8.
READ command is used to enter data for multiple
variables one line at a time:
MTB > read c2-c3 DATA> 2.4 3.6 DATA> 1.7 2.9 DATA> 1.8 4.0 DATA> 3.0 2.6 DATA> end
C2 now contains the values 2.4, 1.7, 1.8, and 3.0. C3 contains the values 3.6, 2.9, 4.0, and 2.6.
SET and
READ commands, type END.
PAPER
at the MTB> prompt at the beginning of your session. The commands you type and all responses by Minitab will be saved
in a file called PRINTER.LIS (the file name will be in upper
case). To print this file after you exit Minitab, type a2ps
PRINTER.LIS at the system prompt. Note: any commands executed
prior to the PAPER command will be lost in the saved information.
OUTFILE command (e.g., OUTFILE
'myfile.out'). Then type in your commands.
To print this file after you exit Minitab, type a2ps myfile.out
at the system prompt. Note: any commands executed prior to the OUTFILE
command will be lost in the saved information.
cd
echo GSTD > startup.MTB
pulse.DAT in
/usr/local/lib/minitab/handbook, calculates descriptive statistics for the
variable C1 (pulse rate before running) for classes of activity level (C8),
and calculates a oneway ANOVA. The results are saved to a listing file
called pulse.out.
MTB > outfile 'pulse.out' MTB > read '/usr/local/lib/minitab/handbook/pulse.DAT' into c1-c8 MTB > describe c1 ; SUBC> by c8. MTB > oneway c1 by c8 MTB > nooutfile MTB > stop