| flextable {flextable} | R Documentation |
Create a flextable object with function flextable.
flextable are designed to make tabular reporting easier for
R users. Functions are available to let you format text, paragraphs and cells;
table cells can be merge vertically or horizontally, row headers can easilly
be defined, rows heights and columns widths can be manually set or automatically
computed.
flextable(data, col_keys = names(data), cwidth = 0.75, cheight = 0.25) regulartable(data, col_keys = names(data), cwidth = 0.75, cheight = 0.25)
data |
dataset |
col_keys |
columns names/keys to display. If some column names are not in the dataset, they will be added as blank columns by default. |
cwidth, cheight |
initial width and height to use for cell sizes in inches. |
A flextable is made of 3 parts: header, body and footer.
Most functions have an argument named part that will be used
to specify what part of of the table should be modified.
ft <- flextable(mtcars) ft