Skip to content

Changes in most popular names are visualized. Data is from Turkstat web site.

Notifications You must be signed in to change notification settings

bariscr/name-race

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Name Race

Changes in most popular names are visualized. Data is from Turkstat web site.

  • Data is acquired in excel format from

https://data.tuik.gov.tr/Bulten/DownloadIstatistikselTablo?p=Ve4Dx5y3H5ojfs6AW6fAopXEEaWfEVPKI7ceqGlZ1BCBWahhX0875ZnoLTrFh/jA

https://data.tuik.gov.tr/Bulten/DownloadIstatistikselTablo?p=q23Bjb4aUdhTvYLrXaeY1JWxIT0LanlzEmoJvZ9bjwB4XpP/7agrU9txmnOZ1Xwh

  • Data is provided seperately for boys and girls, so it is brought together and uploaded to github.

  • Basic code is from:

https://stackoverflow.com/questions/53162821/animated-sorted-bar-chart-with-bars-overtaking-each-other

  • Further transformations are made, which are available in the code file and output gif file is produced.
# load the data
load(url("https://github.com/bariscr/data/raw/master/name_data_turkstat_2019.Rdata"))
################################################################################
library(tidyverse)
library(gganimate)
library(ggdark)
# transform data
name_data <- name_data_turkstat_2019 %>% 
  mutate(name_order = 
           case_when(is.na(name_order) == TRUE ~ 999,
                     TRUE ~ name_order)) %>% 
  filter(sex == 1) 

top_names <- name_data %>% filter(name_order <= 10) %>%
  select(name, year, name_order) %>% distinct()

p <- ggplot(top_names, aes(name_order, group = name, fill = as.factor(name))) +
  geom_text(aes(y = 0, label = paste0(name_order, ". ", name, " ")),
            hjust = "center", fontface = "bold", size = 8) +
  coord_flip(clip = "off", expand = FALSE) +
  scale_x_reverse() +
  guides(color = FALSE, fill = FALSE) +
  dark_theme_minimal() +
  labs(title='{closest_state}', caption="Data: Turkstat", x = "", y = "") +
  theme(plot.title = element_text(hjust = 0, size = 22),
        axis.ticks.y = element_blank(),  
        axis.text.y  = element_blank(),  
        plot.margin = margin(1,1,1,4, "cm")) +
  transition_states(year, transition_length = 4, state_length = 1) +
  ease_aes('cubic-in-out')
  anim <- animate(p, fps = 25, duration = 30, width = 800, height = 600)
anim

About

Changes in most popular names are visualized. Data is from Turkstat web site.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages