nerdexam
SAS_Institute

A00-240 · Question #49

What option must be added to the program to obtain a data set containing Spearman statistics?

The correct answer is D. OUTPUT=estimates. OUTPUT=estimates is the correct option because it specifies an output dataset name that the procedure uses to store the computed Spearman rank-order correlation statistics, making them available for downstream analysis or reporting. OUTCORR= (A) is not a recognized option in…

Regression Models

Question

What option must be added to the program to obtain a data set containing Spearman statistics?

Options

  • AOUTCORR=estimates
  • BOUTS=estimates
  • COUT=estimates
  • DOUTPUT=estimates

How the community answered

(27 responses)
  • A
    4% (1)
  • B
    4% (1)
  • D
    93% (25)

Explanation

OUTPUT=estimates is the correct option because it specifies an output dataset name that the procedure uses to store the computed Spearman rank-order correlation statistics, making them available for downstream analysis or reporting. OUTCORR= (A) is not a recognized option in this procedure's syntax and would cause an error. OUTS= (B) is a distractor that looks plausible because "S" might suggest "Spearman," but it is not the valid output dataset option here. OUT= (C) is a common generic output option in many SAS procedures but applies to a different type of statistic or output context, not Spearman results specifically.

Memory tip: Think of OUTPUT= as the full, explicit keyword - when in doubt, the complete word "OUTPUT" signals you're capturing a full statistical result set, including non-default statistics like Spearman. If you see abbreviated options like OUT= or OUTS=, remember they serve more limited or different purposes.

Topics

#Spearman correlation#Output datasets#SAS PROC syntax#Correlation statistics

Community Discussion

No community discussion yet for this question.

Full A00-240 Practice