你可以做這樣的事情,如果你要的顏色由RGB色彩空間,而不是:
library(shiny)
color.min <- 0
color.max <- 250
n <- 100
# Simulate data
random.data <- data.frame("l"=runif(n,min=color.min,max=color.max),
"a"=runif(n,min=color.min,max=color.max),
"b"=runif(n,min=color.min,max=color.max),
"color"=rep(NA,n))
server <- shinyServer(function(input, output, session) {
observe({
output$table <- renderTable({
random.data
})
})
})
ui <- shinyUI(fluidPage(
# Add jQuery script
tags$head(
tags$script(
HTML("
function color(){
if(document.querySelector('#table')!=null){
// Select each table row in an array and loop over that with jQuery each
$('#table > table > tbody').find('tr').each(function(index, value) {
// Get values for rgb and round to integers
var vals = [];
$(this).children('td').slice(1, 4).each(function(index, value) {
vals[index] = parseInt($(this).html());
});
// Color 5:th child the selected rgb color
$(':nth-child(5)',this).css('background','rgb('+String(vals[0])+','+String(vals[1])+','+String(vals[2])+')');
})
}
else{
setTimeout(function() { color(); }, 100);
}
}
color();
")
)
),
fluidRow(
column(10, uiOutput("table")),
column(2,actionButton("color","color"))
)
))
shinyApp(ui = ui, server = server)
你的答案是非常有用。我還有其他問題。你知道如何去除那個顏色按鈕嗎?所以細胞背景可以自動顯示?非常感謝你! – cutebunny
當然,只需在頁面加載時運行代碼即可。我將編輯我的答案,以顯示如何做到這一點 –
好吧,我不得不採用不同的解決方案,但基本上我每隔0.1秒檢查一次是否存在帶id表的元素,如果存在,它會運行着色部分。這不是超級優雅,但它的作品。 –