Font size
WorksheetsCh 5 Quiz
Total questions: 10
Worksheet time: 7mins
If you run this program, which title or titles appear in the final PROC PRINT results?
The Top Line
The Top Line
The Next Line
The Top Line
The Second Line
The Top Line
The First Line
The Next Line
Which statement substitutes the value of the macro variable Year in the footnote?
footnote 'year Sales';
footnote '&year Sales';
footnote "%year Sales";
footnote "&year Sales";
Which statement is true based on the given program?
The column BatAvg will have a permanent label in the sashelp.baseball table.
The label for BatAvg will appear in the PRINT report
The label for BatAvg will appear in the MEANS report
The label for BatAvg will appear in both reports
Which statement is true regarding a BY statement in a reporting procedure such as PROC PRINT?
The BY statement is responsible for sorting the table.
Only one column can be specified in the BY statement.
The BY statement groups the report by the specified columns.
The BY statement must be the first statement after the PROC statement.
Which statements are true concerning the FREQ procedure? Check all that apply.
The NOPROCTITLE option can be placed in the PROC FREQ statement to remove the procedure title of The FREQ Procedure.
The ORDER=FREQ option can be placed in the PROC FREQ statement to display the column values in descending frequency count order.
The PLOTS= option can be placed in the TABLES statement after the forward slash to create bar charts based on counts or percentages.
The OUT= option can be placed in the TABLES statement after the forward slash to create a table containing counts and percentages.
Which PROC FREQ step creates the results shown here?
Which report is created from the following PROC FREQ step?
Which statement is true concerning the MEANS procedure?
The VAR statement is required and identifies the analysis columns.
The WAYS statement specifies the number of ways to make unique combinations of class columns.
The MAXDEC= option is used in the VAR statement to specify the number of decimal places for the statistics.
The _COUNT_ and _FREQ_ columns are automatically included in the output summary table that is produced by the OUT= option of the OUTPUT statement.
The input table must be pre-sorted by the columns listed
in the CLASS statement of a PROC MEANS step.
True
False
Which statement from PROC MEANS contains valid syntax for creating a summary output table?
out=work.summary mean;
out work.summary mean(Weight)=TotW;
output out work.summary Weight=TotW;
output out=work.summary mean(Weight)=TotW;
