SAS_Institute
A00-280 · Question #88
The following SAS program is submitted: ode output ChiSq(match.all) = WORK.PVALUES(where=(statistic eq 'Chi-Square')) ; proc freq data=WORK.ENDPT; tables ENDPT1 TREAT / chisq; tables ENDPT2 TREAT /…
The correct answer is C. 2 data sets named PVALUES and PVALUES1 each with 1 observation. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
ode output ChiSq(match.all) = WORK.PVALUES(where=(statistic eq 'Chi-Square')) ;
proc freq data=WORK.ENDPT;
tables ENDPT1 * TREAT / chisq;
tables ENDPT2 * TREAT / chisq;
run;
ode output close;
How many data sets are created and how many observations are in the data set(s)?
Options
- A1 data set named PVALUES with 1 observation.
- B1 data set named PVALUES with 2 observations.
- C2 data sets named PVALUES and PVALUES1 each with 1 observation.
- D2 data sets named PVALUES1 and PVALUES2 each with 1 observation.
How the community answered
(37 responses)- A3% (1)
- B5% (2)
- C81% (30)
- D11% (4)
Community Discussion
No community discussion yet for this question.