gpt4 book ai didi

r - 在 RMarkdown 文档中添加 ggvis 绘图会使 knit::kable 输出渲染不正确

转载 作者:行者123 更新时间:2023-12-03 03:11:35 25 4
gpt4 key购买 nike

下面是可重现的示例。每当我包含 ggvis 图时,表格上的格式都会丢失。

---
title: "test"
output: html_document
---

```{r setup, include=FALSE}
library(dplyr)
library(ggvis)
library(knitr)
```

The following table looks fine...

```{r echo=FALSE, results='asis'}
cars %>% kable(format = 'markdown')
```

As long as I don't include this plot below

```{r, echo=FALSE}
pressure %>%
ggvis(x = ~temperature, y = ~pressure) %>%
layer_bars()
```

最佳答案

这可能与 ggvis 开发版本中已修复的错误有关。如果您使用 devtools::install_github('rstudio/ggvis') 安装最新版本,它应该可以工作。

关于r - 在 RMarkdown 文档中添加 ggvis 绘图会使 knit::kable 输出渲染不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24937320/

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