Answers for "force position of table in r markdown"

0

force position of table in r markdown

```{r}    
kable(cars %>% filter(cars$speed>=23), caption = "Speed vs distance") %>%
  kable_styling(latex_options = "HOLD_position")
```
Posted by: Guest on May-31-2021

Browse Popular Code Answers by Language