(This article was first published on Romain Francois, Professional R Enthusiast, and kindly contributed to R-bloggers)
I commited the 2000th revision of Rcpp svn today, so I wanted to look back at what I did previously with the 50 000th R commit.
Here are the number of commits per day and month
... the same thing, but focused on the period since I joined the project
... and now split by contributor
here are the month where each of us have been the most active
> do.call( rbind, lapply( split( month_author_data, month_author_data$author ) , function(x) x[ which.max( x[["commits"]] ), ] ) ) date author commits month year dmbates 2010-08-01 dmbates 19 08 2010 edd 2010-06-01 edd 118 06 2010 romain 2010-06-01 romain 256 06 2010
and the most active day
> do.call( rbind, lapply( split( day_author_data, day_author_data$author ) , function(x) x[ which.max( x[["commits"]] ), ] ) ) date author commits month year dmbates 2010-08-06 dmbates 13 8 2010 edd 2010-02-16 edd 20 2 2010 romain 2010-06-17 romain 30 6 2010
The code to reproduce the graphs is here
To leave a comment for the author, please follow the link and comment on his blog: Romain Francois, Professional R Enthusiast.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).