Jul 7, 2018
Introduction
The code and data employed here can be found at the original repository. The data employed on this report is a sample of the commits made on some of the repositories on Github each day from 2016 to 2017.
Data Overview
readr::read_csv(here::here("evidences/github-users-committing-filetypes.csv"), progress = FALSE, col_types = cols( file_extension = col_character(), month_day = col_integer(), the_month = col_integer(), the_year = col_integer(), users = col_integer() )) -> data data %>% glimpse() ## Observations: 13,802 ## Variables: 5 ## $ file_extension <chr> "md", "md", "md", "md", "md", "md", "md", "md", "… ## $ month_day <int> 18, 17, 27, 16, 26, 21, 4, 22, 23, 1, 12, 3, 2, 2… ## $ the_month <int> 2, 2, 1, 2, 1, 3, 2, 2, 2, 2, 4, 2, 2, 2, 4, 3, 4… ## $ the_year <int> 2016, 2016, 2016, 2016, 2016, 2017, 2016, 2016, 2… ## $ users <int> 10279, 10208, 10118, 10045, 10020, 10015, 9991, 9…