6

有没有办法在 R 闪亮的应用程序中使用 DT 包显示回车?

我在这里尝试了代码:

library(DT)

# create data frame with an example column
test_df <- data.frame(SAME =  "Same Line", NEW = "New\nLine")

# print data frame
datatable(test_df)

\n符号不起作用,并且该datatable函数似乎将 替换\n为空格。

我希望第二个单元格“新行”在不同的行上有“新”和“行”这两个词。

4

2 回答 2

10

这解决了这个问题:

library(DT)

# create data frame with an example column
test_df <- data.frame(SAME =  "Same Line", NEW = "New\nLine")

# replace \n with <br/>
test_df$NEW <- gsub(pattern = "\n", replacement = "<br/>", x = test_df$NEW)

# print data frame 
# with escape set to FALSE
datatable(test_df, escape = FALSE)
于 2015-10-19T15:59:08.540 回答
0

这不是解决方案,而是@easports611 评论的后续行动。下面是一个答案不起作用的应用程序:

server <- function(input, output, session) {
  library(data.table)
  data("iris")
    output$buySegments <- DT::renderDataTable({
      colnames(iris)=c("a <br>b","c<br>d","e<br>f","g<br>h","i")
      sketch<-htmltools::withTags(table(
        tableHeader(iris
      )))
      #rangeRatio
      thing = DT::datatable(
        iris
        ,rownames = FALSE
        ,container = sketch
      )
      return(thing)
    }
    )  
}


ui=shinyUI(
  fluidPage(theme = "bootstrap.css",title = "Buyer Console",
            mainPanel(  
              DT::dataTableOutput('buySegments') 
            )
  )
)

shinyApp(ui = ui, server = server)

问题显然是我通过容器指定列名的事实。事实证明,解决方案是escape=F在 tableHeader 函数中设置选项。

于 2017-04-16T21:39:10.350 回答