Skip to content

loading kableExtra seems to break the skim html output #637

Open
@ArthurAndrews

Description

@ArthurAndrews

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions