Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem 1: Import the Table-1 to SAS. name Scorel Score3 Score4 final Score2 9.75 Score5 10 Gammal 11.25 10 10 90 Delta1 9.5 7.5 10
Problem 1: Import the Table-1 to SAS. name Scorel Score3 Score4 final Score2 9.75 Score5 10 Gammal 11.25 10 10 90 Delta1 9.5 7.5 10 10 95 10 9.75 10 100 Epsilonl Thetal 11.5 12.5 3.5 9 9.5 10 100 Table-1 options data mydata; input datalines; Gammal 11.25 9.75 10 10 10 90 Deltal 9.5 7.5 8 10 10 95 Epsilon1 11.5 10 9.75 3.5 10 100 Thetal 12.5 10 9.5 9 10 100 run; proc print data=mydata; run; a) Complete the above program by filling blanks, according to the followings: 1. options : suppress date in your sas output; (hint: google Customizing Your SAS Session : OPTIONS Statement") 2. options: linesize = 78; 3. Print the data for variables name, Score3, and final. b) Rewrite the program so all the data may be written on only two lines instead of four. Rerun the program to verify it works as expected. (Hint: In part ci mainly want to know how the code changes if all of the data is entered on two lines?Recall the use of @@ in the input statement before the semicolon.)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started