Final answer:
The SAS code for regression of latency on weight involves using the 'proc reg' procedure and the 'model' statement to specify the dependent and independent variables.
Step-by-step explanation:
The SAS code for regression of latency on weight is:
- proc reg data=data_set;
- model latency = weight;
- run;
This SAS code uses the proc reg procedure to perform a regression analysis. The model statement specifies the dependent variable (latency) and the independent variable (weight).