I am trying to make a reactable
with the following (I succeeded making the first but not 2 and 3):
- If a row in any column is above
5
or below0.1
, color that cellred
. - Create a new column that counts the number of red cells for every row. For instance, since the first row has two red cells, the value is 2.
- Create another column that is either
1
or0
:1
if all four columns in a certain row are allwhite
and0
otherwise. For instance, since the 7th row does not have any red cells, the value will be 1.
library(tidyverse)
library(reactable)
reactable(
iris,
columns = set_names(x = colnames(iris)) %>%
map(~ {
colDef(
style = function(value) {
ds_color <- ifelse(value > 5 | value <= 0.2, "red", "white")
list(background = ds_color)
}
)
})
)