From d9cc1283c09434ff0f0ddb545be7331f9e54b549 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 9 Oct 2012 18:11:08 -0700 Subject: [PATCH] try adding more escapes --- posts/bug_reporting_rate.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/bug_reporting_rate.mdwn b/posts/bug_reporting_rate.mdwn index 4eff943..da143ad 100644 --- a/posts/bug_reporting_rate.mdwn +++ b/posts/bug_reporting_rate.mdwn @@ -19,7 +19,7 @@ Now, lets get the data into R and plot it. 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