Dashboard des accidents de vélo

column

Graphique 1

paged_table(gapminder, options = list(rows.print = 15))

column

Graphique 2

ggplot(data = gapminder, aes(x = lifeExp)) +
  geom_histogram(aes(y = ..density..), bins = 30) +
  geom_density()
Warning: The dot-dot notation (`..density..`) was deprecated in ggplot2 3.4.0.
ℹ Please use `after_stat(density)` instead.

Graphique 3

ggplot(data = gapminder, aes(x = lifeExp)) +
  geom_histogram(aes(y = ..density..), bins = 30) +
  geom_density()