Is there a way to put a kable (from the knitr package) and a plot side by side in the output (word output)?
I have this in my code:
```{r, echo=FALSE}
res$actzoneBar
kable(res$actzone)
Where the first one is a plot, and the second one a table with just 2 columns. So they would perfectly fit side by side (and that is also prettier in the final file).
Is there a way to do this?