次のコードは、R Studio からコンパイルすると、テーブルを含む PDF ファイルを生成します。変数の間に二重の縦棒 (ルール) を挿入する方法はありますか? これはできれば使用しますpander
が、それに限定されません。
---
output:
pdf_document:
fig_caption: yes
---
```{r}
pander::pander(cars[1:5,],
split.cell = 80,
split.table = Inf,
digits = 4,
caption = "Some Caption\\label{tab:sometable}",
justify = c('right', 'left'))
```
編集
htmlTable
以下の回答で提案されているように使用してみました。残念ながら、これは、knitr が PDF を作成できるような有効なマークダウン コードを作成しません。
---
output:
pdf_document:
fig_caption: yes
---
```{r}
library('htmlTable')
htmlTable(as.matrix(cars)[1:5, ], caption = 'Table 1: Some caption.',
css.table = 'border-collapse: collapse; border-style: hidden; border-bottom: 1px;',
css.cell = 'border-style: none double none none;')
```