使用knitr
我尝试将两个lattice
绘图与c.trellis()
进行合并,但不是预期的组合绘图,而是得到组合的trellis对象的内部表示:
MWE:
---
title: "Knitr and c.trellis"
author: "David Lindelöf"
date: "17 February 2016"
output: pdf_document
---
```{r}
foo <- xyplot(1 ~ 1)
bar <- xyplot(2 ~ 1)
c(foo, bar)
```
我还尝试在一个单独的块中调用print(c(foo, bar))
,但没有成功。我做错了什么,或者这是knitr
的问题?
答案 0 :(得分:0)
我忘记包含对library(latticeExtra)
的调用,该调用定义了c.trellis()
方法。