我正在尝试使用闪亮的仪表板和DT formatStyle显示数据表,并收到一个错误:'x && y'中的'x'类型无效。 谁能看到我在做什么错?对虹膜的formatStyle修改直接来自DT软件包手册,并且如果我不渲染DT的说明,则可以正常运行。但是,当我尝试渲染时,会出现上述错误。
ui = fluidPage(DTOutput("tableX"))
server = function(input, output, session) {
output$tableX = renderDT(iris,
datatable(iris) %>%
formatStyle(columns ='Sepal.Length',
fontWeight = styleInterval(5, c('bold', 'weight')))%>%
formatStyle('Sepal.Width',
color = styleInterval(3.4, c('red', 'white')),
backgroundColor = styleInterval(3.4, c('yellow', 'gray'))
)
)
}
shinyApp(ui,server)