我的数据如下图所示:
X
a date b c d e f g h i
1 7 Jan 17 80 80 -4 26 58 16 12 12
我想在表格视图中以闪亮的方式显示此数据。
在ui.r
我做了如下:
tableOutput("futureData")
并在server.R
我希望在表格中显示数据框数据
output$futureData <- renderTable()
我该怎么办?
答案 0 :(得分:1)
请尝试
output$futureData <- renderTable(
{
X <- data.frame(a = 1L, date = "7 Jan 17", b = 80L, c = 80L, d = -4L,
e = 26L, f = 58L, g = 16L, h = 12L, i = 12L)
return(X)
}
)
请注意,return(X)
可以替换为单个X
。