有没有办法在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
。
我想要第二个单元格&#34; New Line&#34;有&#34;新&#34;和&#34; Line&#34;分开的。
答案 0 :(得分:2)
这解决了这个问题:
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)
答案 1 :(得分: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)
问题显然是我通过容器指定列名。事实证明,解决方案是在tableHeader函数中设置escape=F
选项。