Open
Description
First of all, thanks for the great package!
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
---
```{r}
library(skimr)
library(knitr)
```
```{r}
skim(iris)
```
Metadata
Metadata
Assignees
Labels
No labels