Hi
How should I code my probplot options in my proc univariate in order to get male/female distinct normal line ?
With my following code, I get only one normal line based on female statistics of BodyTemp.
ods graphics on/width=1000;
proc univariate data=Statdata.NormTemp;
var BodyTemp;
class Gender;
id ID;
histogram BodyTemp / NORMAL(color=blue) overlay;
probplot BodyTemp / NORMAL (mu=est sigma=est) overlay;
inset n='number of measurements recorded' mean median std='Standard Deviation' skewness kurtosis / position=ne;
title "Assessing normality of Body temperature (in celsius) by Gender";
run;
Thanks in advance for your help.
Laura B