gpt4 book ai didi

r - 使用 knitr 和 knitExtra 编织时找不到 kable_input

转载 作者:行者123 更新时间:2023-12-04 10:22:52 29 4
gpt4 key购买 nike

我是 R 的新手,我想使用 Rmarkdown 中的包 kable 和 knitExtra 为我的数据集制作一个整洁的表格。我将尝试通过我的代码来解释错误:

```{r, include=FALSE}
library(readxl); library(dplyr); library(kableExtra); library(knitr)
Froot <- read_excel("~/Documents/Project1/Fruit.xlsx")

knitr::kable(Froot[1:4])
kable_styling(bootstrap_options = c("striped", "hover", "condensed"))

在上面的代码中,当我尝试编织时它会返回此错误:

Quitting from lines 37-39 (Project1.Rmd)

Error in kable_styling(bootstrap_options = c("striped", "hover", "condensed")) : argument "kable_input" is missing, with no default

Calls: ... withCallingHandlers -> withVisible -> eval -> eval -> kable_styling

Execution halted

我注意到错误在函数“kable_styling”中,因此我试图通过添加“kable_input”来解决问题,这将代码变成了这样:

```{r, include=FALSE}
library(readxl); library(dplyr); library(kableExtra); library(knitr)
Froot <- read_excel("~/Documents/Project1/Fruit.xlsx")

knitr::kable(Froot[1:4])
kable_styling(kable_input, bootstrap_options = c("striped", "hover", "condensed"))

但是当我编织时,它告诉我找不到函数“kable_input”!!

Quitting from lines 37-39 (Project1.Rmd)

Error in kable_input() : could not find function "kable_input"

Calls: ... withCallingHandlers -> withVisible -> eval -> eval -> kable_styling

Execution halted

任何修复?我试过用谷歌搜索它,但实际上没有得到任何结果。

最佳答案

@stefan 是对的,您必须添加管道 %>% 并删除他在评论中所做的 kable_input。此外,您可以从 chuck 中删除 include=FALSE(这会计算代码但不显示结果)。

```{r}
library(readxl)
library(dplyr)
library(kableExtra)
library(knitr)

Froot <- read_excel("~/Documents/Project1/Fruit.xlsx")


knitr::kable(Froot)%>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed"))
```

这个例子适用于我的情况:

knitr::kable(iris)%>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed"))

关于r - 使用 knitr 和 knitExtra 编织时找不到 kable_input,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60758041/

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