.Rmd文件的以下内容:
---
title: "Untitled"
output:
html_document: default
---
```{r cars}
mtcars$am <- sprintf("(%s)", as.character(mtcars$am))
knitr::kable(mtcars, format = "html")
```
<ol><li></li></ol>
在
am
列,而不是括号中的数字(由
sprintf
这是有意的吗?我如何解决这个问题,并让括号中的数字显示为html输出中的数字?
产量
knitr::kable
看起来很好,显示:
<td style="text-align:left;"> (1) </td>
-
使用knitr 1.20
-
-
请注意,删除
format = "html"
无法解决实际环境中的问题,我希望使用css进行高级格式化,例如基于生成表的类
A.
根据Michael Harper的公认答案,可能是这样一种方法:
replacechars <- function(x) UseMethod("replacechars")
replacechars.default <- function(x) x
replacechars.character <- function(x) {
x <- gsub("(", "(", x, fixed = TRUE)
x <- gsub(")", ")", x, fixed = TRUE)
x
}
replacechars.factor <- function(x) {
levels(x) <- replacechars(levels(x))
x
}
replacechars.data.frame <- function(x) {
dfnames <- names(x)
x <- data.frame(lapply(x, replacechars), stringsAsFactors = FALSE)
names(x) <- dfnames
x
}
mtcars <- datasets::mtcars
# Create a character with issues
mtcars$am <- sprintf("(%s)", as.character(mtcars$am))
# Create a factor with issues
mtcars$hp <- as.factor(mtcars$hp)
levels(mtcars$hp) <- sprintf("(%s)", levels(mtcars$hp))
replacechars(mtcars)