You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't been able to use skimr and kableExtra in the same Markdown document. If I have a library(kableExtra) statement, the skim table doesn't print correctly in the knit document.
I was able to create these two simple documents to illustrate the problem. I'm on Windows 10 and using skimr 2.1.2.
This one has the issue
---
title: "skim test"
output: html_document
---
```{r}
library(skimr)
library(knitr)
library(kableExtra) # this messes up the skim table
```
```{r}
skim(iris)
```
This one works
---
title: "skim test"
output: html_document
---