]> git.donarmstrong.com Git - don.git/blobdiff - posts/bug_reporting_rate.mdwn
try fixing the file location
[don.git] / posts / bug_reporting_rate.mdwn
index 4eff94312f71435da5723df9c8c7b36416ad5686..0f952b719f3d595f00cbb17384e5f7c01c249e62 100644 (file)
@@ -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="""
-reporting.rate <- read.table("data/bug_reporting_rate.txt")
+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.