cols_align.Rd
Set table column alignment
cols_align(
.default = "l",
...,
.r = NULL,
.c = NULL,
.l = NULL,
.coltype = "p",
.outer = c("none", "l", "r", "lr"),
.complete = NULL
)
cols_center(...)
cols_left(...)
cols_right(...)
the default column alignment
exceptions to use from .default
; each argument should be named
by a column in the data set; values should be either "l", "c", or "r";
for example: WT = "l"
column names as character vector or comma separated string
to align right; for example: .r = "WT,AGE"
column names as character vector or comma separated string
to center; ; for example: .c = "WT,AGE"
column names as character vector or comma separated string
to align left; ; for example: .l = "WT,AGE"
should be p, m, or b
force the left-most column to the left (l
), or the right-most
column on the right (r
), or both (lr
)
not used