]> git.donarmstrong.com Git - don.git/blobdiff - posts/bug_reporting_rate.mdwn
try adding more escapes
[don.git] / posts / bug_reporting_rate.mdwn
index 4eff94312f71435da5723df9c8c7b36416ad5686..da143ad269d2c972c83a9cd9b9df7699f961a451 100644 (file)
@@ -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.