I am using proc mixed for my analysis (RCBD), but don't know the SAS code for outputting the residual which I can use for checking normality. Can anyone help me with the SAS code?
The code I'm using is:
proc mixed data=A;
class ID trt depth block;
model LogNO3= trt| depth;
random block...
Hi,
I have data that is structured like the following:
location team score
away ny 100
home la 80
away chi 95
home det 85
But I would like to transform the pairs of data to be structured like this:
away_team...
Reduce hard coding by using the VCOLUMN table in SASHELP to get a list of your variables into a macro variable array
Very often it is useful to have a list of all the variables you have in a certain table. You don’t always want to type them out yourself (hard coding) but instead want an...