Question: The raw data file called Class.dat contains three test scores for each of two students in a class. If you submit the following SAS program,
The raw data file called Class.dat contains three test scores for each of two students in a class.
If you submit the following SAS program, what will be the value of the variable represented by pi for the first observation after the second time through the iterative DO group?
Jimmy
Ulric
DATA score;
INFILE c;MyRawDataClassdat';
INPUT ID Name $ Test Test Test;
ARRAY t Test Test;
ARRAY p Prop Prop;
DO i to ;
pi ti;
END;
Total SUMTest Test;
RUN;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
