0

パンダーテーブルを slideify ドキュメントでレンダリングするのに苦労してます (特に への呼び出しを使用pander.lm)。

たとえば、以下は機能します

```{r panderWorks, results = "asis"}
id <- rep(1:3, each = 2)
condition <- rep(c("A", "B"), 3)
score <- rnorm(6, 10, 3)
d <- data.frame(id, condition, score)

library(pander)
pander(d, style = "rmarkdown")
```

ここに画像の説明を入力

以下はそうではありませんが

```{r panderFails, results = "asis"}
data(iris)
pander(lm(Sepal.Width ~ Species, data = iris), 
   style = "rmarkdown")
```

ここに画像の説明を入力

Note that I actually can get the first chunk to render correctly without the results = "asis" option, but that's worked for me in the past. I've tried changing many options and still no luck. It's also worth noting that I have no problem getting this to render in a standard rmarkdown document. It's only within slidify that I have issues.

I'm working within the io2012 framework, with the highlight.js highlighter and the zenburn highlight theme. I've loaded the mathjax widget and the mode is selfcontained.

Below I've attached my output from sessionInfo().

Any ideas?

ここに画像の説明を入力

4

0 に答える 0