Learn R Programming

flextable (version 0.7.0)

flextable: flextable creation

Description

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.

Default formatting properties are automatically applied to every flextable you produce. You can change these default values with function set_flextable_defaults().

Usage

flextable(
  data,
  col_keys = names(data),
  cwidth = 0.75,
  cheight = 0.25,
  defaults = list(),
  theme_fun = theme_booktabs
)

qflextable(data)

regulartable(data, col_keys = names(data), cwidth = 0.75, cheight = 0.25)

Arguments

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.

defaults, theme_fun

deprecated, use set_flextable_defaults() instead.

Illustrations

qflextable

qflextable is a convenient tool to produce quickly a flextable for reporting where layoout is fixed and columns widths adjusted with autofit().

Details

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.

If working with R Markdown document, you should read about knitr chunk options in knit_print.flextable() and about setting default values with set_flextable_defaults().

See Also

style(), autofit(), theme_booktabs(), knit_print.flextable(), compose(), footnote(), set_caption()

Examples

Run this code
# NOT RUN {
ft <- flextable(head(mtcars))
ft
# }

Run the code above in your browser using DataLab