problem-3.12

problem-3.12  We can split the data up using the condition gender==1 as follows:
> attach(normtemp)
> male = temperature[gender == 1]
> female = temperature[gender == 2]
> boxplot(list(male=male,female=female))
> detach()
    
From the graphic it appears that the centers of the distributions are different.