A00-240 · Question #50
This question will ask you to provide a missing option. A business analyst is investigating the differences in sales figures across 8 sales regions. The analyst is interested in viewing the…
The correct answer is C. Solution. In PROC GLM, when a CLASS statement is used, SAS suppresses parameter estimates by default because the model is not full rank (the dummy-coded design matrix is singular). Adding the SOLUTION option to the MODEL statement explicitly tells SAS to display the parameter estimates…
Question
Options
- ASolve
- BEstimate
- CSolution
- DEst
How the community answered
(38 responses)- A3% (1)
- B3% (1)
- C87% (33)
- D8% (3)
Explanation
In PROC GLM, when a CLASS statement is used, SAS suppresses parameter estimates by default because the model is not full rank (the dummy-coded design matrix is singular). Adding the SOLUTION option to the MODEL statement explicitly tells SAS to display the parameter estimates for each level of the classification variable, which is exactly what the analyst needs.
Why the distractors are wrong:
- A. SOLVE - not a valid
PROC GLMmodel option; SAS will throw an error. - B. ESTIMATE -
ESTIMATEis a valid statement inPROC GLM(used for custom contrasts), but it is not a model option, so placing it after the/here is incorrect. - D. EST - not a recognized abbreviation; SAS does not accept this shorthand for
SOLUTION.
Memory tip: Think of it as asking SAS to show you the solution to the regression system - you need the full SOLUTION keyword, spelled out, because SAS won't abbreviate it for you when the model is overparameterized.
Topics
Community Discussion
No community discussion yet for this question.