View source: R/expr_to_excel.R
expr_to_excel | R Documentation |
Translate an R expression into an Excel conditional formatting formula
expr_to_excel(x, data, row_start = 2L)
x |
An R-style expression |
data |
A data frame that expression |
row_start |
Integer reflecting the first row of data in the Excel sheet to be output. Defaults to 2. |
A character string reflecting an Excel conditional formatting formula
library(datasets)
expr_to_excel(cyl > 4, mtcars)
expr_to_excel(cyl > 4 & hp < 200, mtcars)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.