Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AlbertRapp
AlbertRapp / perfect_bar_chart.qmd
Created April 7, 2023 10:14
Perfect bar charts
```{r}
library(tidyverse)
manufacturers <- mpg |>
mutate(manufacturer = str_to_title(manufacturer))
```
```{r}
Automate Chunks of Analysis in R Markdown
========================================================
```{r setup, echo=FALSE}
library(knitr)
library(DT)
```
```{r create-datasets, echo=FALSE}