这与其他问题链接有关。
目前我正在使用此代码来对我的表格应用一些样式。
只有当值超过 的第三个分位数时,我才需要为每个单元格着色row
,问题是它DT
似乎不允许工作row
,只是工作column
。
formattable()
工作正常,但我失去了一些有用的属性DT
,例如用 . 编辑单元格的可能性editable=T
。
library(formattable)
library(DT)
dat <- as.data.frame(matrix(AirPassengers, ncol=12, byrow=T))
find_anomaly <- function(x) {
q3 <- quantile(x, 0.75)
q3
}
ftable <- formattable(dat, lapply(1:nrow(dat), function(row) {
area(row, col = 1:12) ~ formatter("span", style = x ~ ifelse(x > find_anomaly(x),
style(
display = "block",
padding = "0 4px",
"border-radius" = "4px",
"color" = csscolor("white"),
"background-color" = csscolor(
gradient(as.numeric(x),"white", "orangered"))),
NA))
}))
as.datatable(ftable, editable=T)
在这里,您可以看到一切都很好,只是表格显示了formattable()
单击后的 HTML:
有没有办法让生成的样式formattable
可以正常使用editable=T
?