- data
data set to be used.
- type
print summary table for either numeric
or factor
variables.
- variables
character vector defining variables that should be included in the
table. Per default, all numeric or factor variables of data
are used, depending on type
.
- variable.labels, labels
labels for the variables. If variable.labels = NULL
(default)
variables
is used as label. If variable.labels = TRUE
,
labels(data, which = variables)
is used as labels. Instead of
variable.labels
one can also use labels
.
- group
character specifying a grouping factor. Per default no grouping is
applied.
- test
logical or character string. If a group
is given, this argument
determines whether a test for group differences is computed. For
details see summarize_numeric
and
summarize_factor
.
- colnames
a vector of character strings of appropriate length.
The vector supplies alternative column names for the resulting
table. If NULL
default names are used.
- digits
number of digits to round to. For defaults see
summarize_numeric
and summarize_factor
.
- digits.pval
number of significant digits used for p-values.
- smallest.pval
determines the smallest p-value to be printed
exactly. Smaller values are given as “< smallest.pval”.
This argument is passed to the eps
argument of
format.pval
. See there for details.
- sep
logical. Determines whether separators (lines) should be added after
each variable. For defaults see summarize_numeric
and
summarize_factor
.
- sanitize
logical (default: TRUE
) or a sanitizing function used to clean the
input in order to be useable in LaTeX environments. Per default
toLatex.character
is used.
- drop
logical (default: TRUE
). Determines whether variables, which contain
only missing values are dropped from the table.
- show.NAs
logical. Determines if NAs are displayed. Per default,
show.NAs
is TRUE
if there are any missings in the
variables to be displayed (and FALSE
if not). For details see
summarize_numeric
and summarize_factor
.
- ...
additional arguments for summarize_numeric
and
summarize_factor
. See there for details.