gpt4 book ai didi

r - 更改 Rstudio 中 kable 表的默认文本颜色

转载 作者:行者123 更新时间:2023-12-04 12:49:44 25 4
gpt4 key购买 nike

我在 RStudio 中使用 R Markdown,并且更喜欢使用黑色背景编写代码。使用 kable 在输出 html 文档中很好地格式化了我的表格。但是,我注意到我无法读取 kable 的输出,因为文本颜色为黑色:

enter image description here

但是如果我使用 pander,它知道使用白色文本...

enter image description here

但是我的报告中的丑陋天啊: enter image description here

我怎样才能让 kable 在 RStudio 中使用白色文本,或者让 pander 在我的报告中生成更漂亮的表格?

最佳答案

你可以使用

kable(head(iris), format = "html", table.attr = "style = \"color: white;\"")

为了让笔记本预览使用白色字体颜色。如果您希望最终输出以另一种方式格式化,只需在 Rmarkdown 的开头使用一些 CSS:

<style>
table {
background-color: white !important;
color: black !important;
}
</style>

!important 规则覆盖任何其他样式。

enter image description here

关于r - 更改 Rstudio 中 kable 表的默认文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40851983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com