Knitr table 和 formattable 函数在 Rstudio 和 Shiny 中不起作用

Knitr table and formattable functions don't work in Rstudio & Shiny

我试图通过添加 formattable 包的一些功能(即 colortile,...)使我的 knitr tables(通过 KableExtra 包)更具吸引力。

但是当 运行 代码时,table 可视化,但 table 不呈现格式 table 的元素。但是我可以在 table 中看到 HTML 代码,其中格式 table 函数必须发生(下面打印屏幕中的第 6 列):

这是我渲染 table:

的代码
input_file %>%
            mutate(
            month_perc = color_bar("lightgreen")(month_perc)) %>%
            kable(format = 'html')%>%
            kable_styling(bootstrap_options = c("hover","striped"))

这可能是一个简单的修复方法,但有人知道为什么它不呈现吗?

提前致谢!

亲切的问候,

西蒙

您的 kable 函数中需要 escape=F。