这是this answer的改编版。
使用pivot_longer 代替gather,这是tidyr 最新版本中推荐的。此外,在为新的 selector 列创建输入时,请检查变量 name。如果是var1,则使用selectInput,否则使用numericInput。
否则,应该以类似的方式工作。
library(shiny)
library(DT)
library(tidyverse)
df1 <- tibble(
var1 = sample(letters[1:3],10,replace = T),
var2 = runif(10, 0, 2),
id=paste0("id",seq(1,10,1))
)
# gather is retired, switch to pivot_longer
DF = pivot_longer(df1, cols = -id, names_to = "name", values_to = "value", values_transform = list(value = as.character))
ui <- fluidPage(
title = 'selectInput or numericInput column in a table',
DT::dataTableOutput('foo'),
verbatimTextOutput('sel')
)
server <- function(input, output, session) {
for (i in 1:nrow(DF)) {
if (DF$name[i] == "var1") {
DF$selector[i] <- as.character(selectInput(paste0("sel", i), "", choices = unique(df1$var1), width = "100px"))
} else {
DF$selector[i] <- as.character(numericInput(paste0("sel", i), "", NULL, width = "100px"))
}
}
output$foo = DT::renderDataTable(
DF, escape = FALSE, selection = 'none', server = FALSE,
options = list(dom = 't', paging = FALSE, ordering = FALSE),
callback = JS("table.rows().every(function(i, tab, row) {
var $this = $(this.node());
$this.attr('id', this.data()[0]);
$this.addClass('shiny-input-container');
});
Shiny.unbindAll(table.table().node());
Shiny.bindAll(table.table().node());")
)
output$sel = renderPrint({
str(sapply(1:nrow(DF), function(i) input[[paste0("sel", i)]]))
})
}
shinyApp(ui, server)