condformat | R Documentation |
A condformat_tbl
object is a data frame with attributes regarding
the formatting of their cells, that can be viewed when the condformat_tbl
object is printed.
condformat(x)
x |
A matrix or data.frame |
The condformat_tbl
object. This object can be piped to apply
conditional formatting rules. It can also be used as a conventional
data frame.
The condformat_tbl
print method generates an htmlTable
, to be
viewed using the 'RStudio Viewer' or an 'HTML browser', as available.
data(iris)
cf <- condformat(iris[1:5,])
## Not run:
print(cf)
## End(Not run)
cf <- condformat(iris[1:5,]) %>% rule_fill_gradient(Sepal.Length)
## Not run:
print(cf)
## End(Not run)
cf <- condformat(iris[1:5,]) %>%
rule_fill_discrete(Sepal.Length, expression=Sepal.Width > 2)
## Not run:
print(cf)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.