I've been using Quarto for .... 1 day. This is probably a very simple question. I load the tidyverse and the skimr package. When I apply 'skim' to the diamonds dataset, the width is too small. Any way I can change to avoid the word-wrap.
---
title: "Data Mining with Tidymodels"
format:
revealjs:
theme: simple
editor: visual
---
### Load Required Libraries
```{r}
#| echo: true
library(tidyverse)
library(skimr)
Basic statistics
#| echo: true
skim(diamonds)