Question: What are the code for this question in SAS? c observations should be: 8, alld ABC 18.4 Run the following program to create data set
What are the code for this question in SAS?

c observations should be: 8, alld ABC 18.4 Run the following program to create data set STRING. Create variable X (numeric) from the first two positions in the string and variable Y (numeric) from the third position (for example, in line 1, X would be equal to 12 and Y would be equal to 3). Extract characters 4 and 5 and call it STATE (character). Make sure the STATE value is uppercase. Positions 6-10 are used to create five numeric variables N1-N5. If you are bold, you can use an array to create N1 to N5. DATA STRING; INPUT STRING $10. ; DATALINES ; 123nj76543 892NY10203 876pA83745 t any one
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
