]> git.donarmstrong.com Git - don.git/commitdiff
try adding more escapes
authorDon Armstrong <don@donarmstrong.com>
Wed, 10 Oct 2012 01:15:34 +0000 (18:15 -0700)
committerDon Armstrong <don@donarmstrong.com>
Wed, 10 Oct 2012 01:15:34 +0000 (18:15 -0700)
posts/bug_reporting_rate.mdwn

index 4266c45253aaceb363439dbc32b185508af6fcf2..d473b31c10027b07b522bb6945adb33b1e30611e 100644 (file)
@@ -20,7 +20,7 @@ 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.