Identify the correct order in which you would perform the analysis IN SAS descri
ID: 3203699 • Letter: I
Question
Identify the correct order in which you would perform the analysis IN SAS described in the graphs and tables above (including Look at the data!") using simple regression methodology I. proc contents data = batman; run; II. symbol c = black v = % i = r; proc g plot data = batman; plot sales* cookies; run; III. proc means data = batman; run; IV. proc corr data = batman; run; V. proc reg data = batman; model sales = cookies; run; II, IV, I, III and V I, III, V, V and II IV, II, III, V and I I, III, II, IV andExplanation / Answer
First proc contents should be used to read the data file, followed by proc means to know more details about the variables including range, mean, standard deviation. Next use, proc gplot for identifying variables to be plotted. Now, if one is interested to find correlation between certain variables, proc corr can be used. Post this, proc reg to run simple linear regression. Option 4 is the ans.