119k views
0 votes
What is the SAS code for regression of latency on weight?

1 Answer

3 votes

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:



  1. proc reg data=data_set;
  2. model latency = weight;
  3. 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).

User Jegan Kunniya
by
7.8k points