Description Usage Format Source Examples
A database containing the first names of babies born in Quebec between 1980 and 2020
1 |
A database containing 769 890 lines and 4 columns:
Year
F for female and M for male
Name
Frequency
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | library(dplyr)
library(ggplot2)
library(prenoms)
# Prenoms des membres de ma famille
family <- prenoms %>%
filter(
name == "Marc-Andre" & sex == "M" |
name == "Laurent" & sex == "M" |
name == "Melanie" & sex == "F" |
name == "Anna" & sex == "F"
) %>%
group_by(name, year, sex) %>%
summarise(n = sum(n)) %>%
arrange(year)
ggplot(data = family, aes(x = year, y = n, color = name))+
geom_line()+
scale_x_continuous( breaks = seq(1980, 2020, by = 5))
library(dplyr)
# Les 5 prenoms feminins les plus populaires en 2020
prenoms %>%
filter(year == 2020 & sex == "F") %>%
select(year, sex, name, n) %>%
arrange(desc(n)) %>%
head(5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.