Skip to content

Commit

Permalink
Using kbl for better output of data heade
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmenTamayo committed May 2, 2024
1 parent 3778eaa commit 9f80644
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ Data used in this report _are available to the reader at https://doi.org/10.1038

```{r}
# This is what the data used in this report, `dat_raw`, looks like:
knitr::kable(head(dat_raw),
align = "lccc"
)
head(dat_raw) %>%
kbl() %>%
kable_styling()
```

## Identifying key data
Expand Down

0 comments on commit 9f80644

Please sign in to comment.