我正在尝试使用R中的循环,以便避免使用格式化表格的重复代码。
我刚刚开始学习循环以自动化任务的过程,因此到目前为止,大多数情况下都是空白。我使用的长版代码可以完成这项工作,但在较大规模上不切实际。
library(DT)
## Create data frame containing test results for Students A - H.
A <- c(69, 64, 70, 57, 80, 34, 45, 56, 96)
B <- c(70, 74, 68, 76, 71, 56, 56, 45, 30)
C <- c(84, 58, 87, 78, 67, 67, 43, 34, 56)
D <- c(78, 83, 68, 72, 90, 48, 23, 23, 46)
E <- c(79, 55, 91, 71, 34, 26, 76, 67, 75)
F <- c(80, 72, 64, 45, 66, 76, 45, 56, 54)
G <- c(90, 67, 76, 51, 45, 59, 33, 64, 34)
H <- c(60, 59, 88, 90, 76, 34, 43, 72, 45)
student_results <- data.frame(A, B, C, D, E, F, G, H)
## Create table of data frame, highlighting marks >= 85 in 'aquamarine'
## Marks < 50 highlighted in 'coral'
datatable(student_results) %>%
formatStyle('A',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('B',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('C',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('D',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('E',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('F',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('G',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))) %>%
formatStyle('H',
backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine"))
我想出的代码可以完成工作,但是非常重复。我一直在试图弄清楚如何获得循环以在表中的每一列上运行formatStyle()函数,或者找到执行相同任务的其他函数,但是还没有成功。
答案 0 :(得分:2)
library(DT)
#colnames(student_results)[2:ncol(student_results)] #if you need selected columns
datatable(student_results) %>%
formatStyle(colnames(student_results),backgroundColor = styleInterval(c(50,85), c("coral", "white", "aquamarine")))
答案 1 :(得分:0)
管道a %>% b() %>% b() %>% b()
与重复评估b(b(b(a)))
相同,因此您的for
循环版本看起来像函数的重复应用:
> sr = datatable(student_results)
> for(L in LETTERS[1:8]){
sr = formatStyle(sr, L,
backgroundColor = styleInterval(
c(50,85), c("coral", "white", "aquamarine")))}
> sr