如何在R Markdown中增加apa_table的宽度。我正在使用木瓜包装。我希望宽度足够长以适合表格标题。
这是我用于表格的代码:
```{r '1996 - 1997 Count Matrix',echo=FALSE, message=FALSE, warning=FALSE, results="asis"}
apa_table(count_transition_matrix_9697,
caption = "One-Period Short Ratings Transition Count Matrix, 1996 - 1997",
align = c("c"),
added_stub_head = "Period 1 Short Ratings",
col_spanners = list(`Period 2 Short Ratings` = c(2,7)
))
```
输出看起来像这样:
我尝试在r块中包含“ fig.width”,但这不起作用。任何指导方针都会被重视。