Heading pseudo-function
The Heading
pseudo-function normally overrides the automatic
heading on the following items in a table. Setting
override=FALSE
is used in automatically
generated expressions.
Heading(name = NULL, override = TRUE, character.only = FALSE, nearData = TRUE)
name |
A legal R variable name, or a character constant. |
override |
Whether this heading should override one that is already present. |
character.only |
If |
nearData |
See Details below. |
This replaces the automatic heading or row label on the following item
with the name
or string as specified. If no argument
is given, the heading or label is suppressed.
An alternative form of Heading(name)
is (name=...)
, where
...
is an expression to be displayed in the table.
If override = FALSE
, the label is only supplied if there is no other label.
This is used in the code for Factor
.
The nearData
argument is rarely used. It
affects the situation where "+"
is used to
join tables with different numbers of labels.
If nearData = TRUE
(the default), the shorter
list of labels are pushed close to the data, i.e.
to the right side for row labels, the bottom for
column labels. If FALSE
, they are pushed
to the opposite side.
This is a “pseudo-function”: it takes the form of a function call, but is
never actually called: it is
handled specially by tabular
.
tabular( (Sepal.Length+Sepal.Width) ~ (Heading(Mean)*mean + (S.D.=sd)), data=iris ) heading <- "Variable Heading" tabular( (Sepal.Length+Sepal.Width) ~ (Heading(heading, character.only = TRUE)*mean + (S.D.=sd)), data=iris )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.