From 6555e2cc760ab616da985496b95f5fc310418e81 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 9 Oct 2012 18:14:58 -0700 Subject: [PATCH] we also need lattice --- posts/bug_reporting_rate.mdwn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/posts/bug_reporting_rate.mdwn b/posts/bug_reporting_rate.mdwn index da143ad..4266c45 100644 --- a/posts/bug_reporting_rate.mdwn +++ b/posts/bug_reporting_rate.mdwn @@ -16,10 +16,11 @@ Now, lets get the data into R and plot it. [For clarity, I'm not showing the R code, but it's available in the source cdoe for this post.] [[!sweavealike results="hide" fig=1 echo=0 code=""" +require(lattice) reporting.rate <- read.table("data/bug_reporting_rate.txt") colnames(reporting.rate) <- c("bug","epoch") reporting.rate <- data.frame(reporting.rate) -reporting.rate$bug <- as.numeric(gsub("\\\\.report","",gsub(".*\\\\/","",reporting.rate$bug))) +reporting.rate$bug <- as.numeric(gsub("\\.report","",gsub(".*\\/","",reporting.rate$bug))) reporting.rate <- reporting.rate[order(as.numeric(reporting.rate$bug)),] ### this is the number of bugs submitted per second ### however, for bug numbers less than about 100000, this number is wrong. -- 2.39.2