flextable (version 0.5.11)

minibar: mini barplots chunk wrapper

Description

This function is used to insert bars into flextable with function compose. It should be used inside a call to as_paragraph

Usage

minibar(
  value,
  max = NULL,
  barcol = "#CCCCCC",
  bg = "transparent",
  width = 1,
  height = 0.2
)

Arguments

value

values containing the bar size

max

max bar size

barcol

bar color

bg

background color

width, height

size of the resulting png file in inches

Illustrations

See Also

compose, as_paragraph

Other chunk elements for paragraph: as_bracket(), as_b(), as_chunk(), as_image(), as_i(), as_sub(), as_sup(), hyperlink_text(), linerange(), lollipop()

Examples

Run this code
# NOT RUN {
ft <- flextable( head(iris, n = 10 ))

ft <- compose(ft, j = 1,
  value = as_paragraph(
    minibar(value = Sepal.Length, max = max(Sepal.Length))
  ),
  part = "body")

ft <- autofit(ft)
ft
# }

Run the code above in your browser using DataCamp Workspace