The following graphs are produced in the summary module by choosing the variable(s) and clicking on the name of the plot. (We will only list those that are used in the course.) As illustrations we will give plots of the variable Weight in the Height-Weight data.
Rweb:> stem(Weight) The decimal point is 1 digit(s) to the right of the | 16 | 0 18 | 55 20 | 589 22 | 2550
x y 74 73 75 78 77 76 73 72 69 65 73 64 78 76 77 78we need to stack the two columns into one column and add a variable indicating whether the value is a X or a Y. Let's use "0" for X and "1" for Y. The data entered will be as follows.
xy ind 74 0 75 0 77 0 73 0 69 0 73 0 78 0 76 0 77 0 78 0 73 1 78 1 76 1 72 1 65 1 64 1The variables "xy" and "ind" will now show in the summary module. Choose "xy" and split boxplot on "ind". Here is what the choices should look like.
Here is what the comparison boxplot looks like.