powered by
This function is used to insert bars into flextable with functions:
compose() and as_paragraph(),
compose()
as_paragraph()
append_chunks(),
append_chunks()
prepend_chunks().
prepend_chunks()
minibar( value, max = NULL, barcol = "#CCCCCC", bg = "transparent", width = 1, height = 0.2, unit = "in" )
values containing the bar size
max bar size
bar color
background color
size of the resulting png file in inches
unit for width and height, one of "in", "cm", "mm".
compose(), as_paragraph()
Other chunk elements for paragraph: as_b(), as_bracket(), as_chunk(), as_equation(), as_highlight(), as_i(), as_image(), as_sub(), as_sup(), as_word_field(), colorize(), gg_chunk(), grid_chunk(), hyperlink_text(), linerange(), lollipop(), plot_chunk()
as_b()
as_bracket()
as_chunk()
as_equation()
as_highlight()
as_i()
as_image()
as_sub()
as_sup()
as_word_field()
colorize()
gg_chunk()
grid_chunk()
hyperlink_text()
linerange()
lollipop()
plot_chunk()
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 DataLab