From: Don Armstrong Date: Wed, 10 Oct 2012 01:11:08 +0000 (-0700) Subject: try adding more escapes X-Git-Url: https://git.donarmstrong.com/?p=don.git;a=commitdiff_plain;h=d9cc1283c09434ff0f0ddb545be7331f9e54b549 try adding more escapes --- 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.