我刚刚发现并开始使用 R 中的 condformat 包。

它工作得很好,但是当我运行下面的代码时,一个 ## NULL 行出现在表格的正上方。如果我添加 include=FALSE ,它会删除 ## NULL ,但也会删除表。

有没有办法在不抑制表的情况下抑制 ## NULL

---
title: "condformat_test"
author: "John"
date: "Dec 24, 2016"
output:
  pdf_document
---


```{r setup_chunk, include=FALSE}
library(condformat)
library(knitr)

knitr::opts_chunk$set(echo=FALSE)

```

```{r condformat_test}

condformat(iris[c(1:5,70:75, 120:125),]) +
  rule_fill_gradient2(Petal.Length)
```

最佳答案

谢谢举报。 condformat 0.4.0 存在一个错误,将在下一个 CRAN 版本中修复。

现在,请随意使用:

devtools::install_github("zeehio/condformat")

关于r - 如何在 knitr 输出中停止上表的 "## NULL"?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41387561/

10-10 11:40