(This article was first published on Mathew Analytics LLC » R, and kindly contributed to R-bloggers)
Three of Marvel’s longest running comic book series’ are Thor,
Uncanny X-Men, and Fantastic Four. Using data from 2010, I compare
monthly comic book sales for each series. This data only pertains
to monthly issues and not trade paperbacks. Furthermore, the series
Amazing Spider Man was not considered because it was released twice
a month.

ggplot(mydat, aes(Time)) + geom_line(aes(y = Sold, colour = "Thor"), size = 1) + geom_line(aes(y = Sold.1, colour = "Uncanny X-Men"), size = 1) + geom_line(aes(y = Sold.2, colour = "Fantastic Four"), size = 1) + opts(title = "Uncanny X-Men vs. Thor vs. Fanastic Four (2010)") + opts(plot.title = theme_text(size = 12, face = "bold")) + ylim(c(20000,90000)) + xlab("") + ylab("") + opts(axis.text.y = theme_text(family = "sans", face = "bold", size = 8)) + opts(axis.text.x = theme_text(family = "sans", face = "bold", size = 8)) + opts(plot.margin = unit(c(0.3, 0.3, 0.3, 0.1), "lines")) + scale_colour_discrete('Comic Book') + opts(legend.position = c(0.8, 0.8))
To leave a comment for the author, please follow the link and comment on his blog: Mathew Analytics LLC » R.
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).