Learn R Programming

flextable (version 0.7.2)

prepend_chunks: prepend chunks to flextable content

Description

prepend chunks (for example chunk as_chunk()) in a flextable.

Usage

prepend_chunks(x, ..., i = NULL, j = NULL, part = "body")

Arguments

x

a flextable object

...

chunks to be prepended, see as_chunk(), gg_chunk() and other chunk elements for paragraph.

i

rows selection

j

column selection

part

partname of the table (one of 'body', 'header', 'footer')

See Also

Other functions for mixed content paragraphs: append_chunks(), as_paragraph(), compose()

Examples

Run this code
x <- flextable(head(iris))
x <- prepend_chunks(
  x,
  i = 1, j = 1,
  colorize(as_b("coucou "), color = "red")
)
x

Run the code above in your browser using DataLab