Use bold text if a condition is met

rule_text_bold(x, columns, expression, na.bold = FALSE, lockcells = FALSE)

Arguments

x

A condformat object, typically created with condformat()

columns

A character vector with column names to be coloured. Optionally tidyselect::language() can be used.

expression

Condition that evaluates to TRUE for the rows where bold text should be applied. When columns selects more than one column, the expression is evaluated once per column, with the .col pronoun bound to that column's own values. If omitted, it defaults to .col.

na.bold

If TRUE, make missing values bold.

lockcells

logical value determining if no further rules should be applied to the affected cells.

Examples

data(iris)
cf <- condformat(iris[c(1:5, 51:55, 101:105),]) |>
  rule_text_bold(Species, expression = Species == "setosa")
if (FALSE) { # \dontrun{
print(cf)
} # }