library("tidyverse")
theme_set(theme_minimal())
theme_update(panel.grid.minor = element_blank(),
plot.title = element_text(hjust = 0.5))
tibble(x = rnorm(100)) |>
ggplot(aes(x)) +
geom_density()
library("tidyverse")
theme_set(theme_minimal())
theme_update(panel.grid.minor = element_blank(),
plot.title = element_text(hjust = 0.5))
tibble(x = rnorm(100)) |>
ggplot(aes(x)) +
geom_density()