2

刚刚了解sparktable并浏览了一些关于它的文件。我想知道它是否可以用于knitrrmarkdown生成嵌入的 PDF 文档sparktable

另外,我注意到plotSparkTable()在许多示例中都使用过,但它在最新版本 1.0 中不存在,但在 0.9 中确实存在。有替代品plotSparkTable()吗?

4

1 回答 1

3

有关如何使用. _ 这是文章中的一个示例:sparkTableknitr

```{r , echo = TRUE }
require ( sparkTable )
sl <- newSparkLine ( values = rnorm (25) , lineWidth = .18 , pointWidth = .4 ,
width = .4 , height = .08)
export ( sl , outputType = " png " , filename = " sparkLine ")
```
This is a sparkline included in the ![ firstSparkLine ]( sparkLine . png )
text ...

export()是替代品plotSparkTable()

于 2015-08-12T17:50:04.740 回答