formchar(3,7)='*#'
x
after the closing quotation
mark. For example, the following option assigns the hexadecimal character
2D to the third formatting character, the hexadecimal character 7C
to the seventh character, and does not alter the remaining characters:
formchar(3,7)='2D7C'x
('--')
as the last line of each
column heading instead of using HEADLINE.
_RBREAK_
.
If the observation derives from a COMPUTE BEFORE _PAGE_ or COMPUTE
AFTER _PAGE_ statement, then the value of _BREAK_ is _PAGE_
.
Note, however, that for COMPUTE BEFORE _PAGE_ and COMPUTE AFTER _PAGE_,
the _PAGE_
value is written to the
output data set only; it is not available as a value of the automatic
variable _BREAK_ during execution of the procedure.
When CENTER is in effect, PROC REPORT ignores spacing that precedes the leftmost variable in the report.
If a summary row appears in the middle of a set of rows that would otherwise be spanned by a single cell, the summary row introduces its own cell in that column. This action breaks the spanning cell into two cells even when the value of the GROUP or ORDER variable that comes after the summary row is unchanged.
In order to produce PROC REPORT output that is compliant with section 508, you need to specify the SPANROWS option in PROC REPORT and specify the HEADER_DATA_ASSOCIATIONS=yes OPTIONS option in the HTML statement. Section 508 is the accessibility standards for electronic information technology adopted by the U.S. Government under Section 508 of the U.S. Rehabilitation Act of 1973.
Here is example code: ods html file="sec508.html"
options(header_data_associations="yes"); proc report data=energy headline
headskip nowd spanrows;
Specifying Style Elements for ODS Output in Multiple Statements
When you use the WEIGHT statement and VARDEF=WGT, the computed variance is asymptotically (for large n) an estimate of , where is the average weight. This yields an asymptotic estimate of the variance of an observation with average weight.