As a first example, use Minitab to summarize the following data. The data give traffic death rates (per 100 mio motor vehicle miles) for each of the 50 states.
6.4 7.1 4.5 8.8 4.6 5.0 ....The data are in file /afs/acpub/project/sta215/traffic.data. First copy the data file to your account:
cp /afs/acpub/project/sta215/traffic.data traffic.dataTo make sure the cp command (think: copy) did what you intended it to do, use the command
lsThe ls command (think: list) shows a list of all files in your account--- at this moment probably only the file traffic.data which you just copied.
Now you are ready to start Minitab. Type:
minitabYou should get the Minitab prompt "MTB >" . First we need to read the data into Minitab:
set 'traffic.data' c1The set command reads the data from file traffic.data into the Minitab column c1. Don't forget the single quotes around the file name! Look at the column c1:
print c1Turn to page one-sample data for some descriptive statistics for this data set.
read 'traffic.data' c1Look at
help readand
help setto find out the difference between the two commands.
The help command gives you an on-line help facility. Type
help commandsto get a listing of possible commands by categories. Try
help commands 5to get a list of all commands for plotting, and
help histfor an explaination of the hist command.