X-Git-Url: https://git.donarmstrong.com/?p=don.git;a=blobdiff_plain;f=posts%2Fbug_reporting_rate.mdwn;h=f63a8e82a64acbec05a1a313624ac0ad8b23e2a6;hp=d164d1a510d0b5c5cf10f7f4a385b1e33a1c3ccd;hb=HEAD;hpb=794d3c19083d41fd28505a3387f0562db74335a5 diff --git a/posts/bug_reporting_rate.mdwn b/posts/bug_reporting_rate.mdwn index d164d1a..f63a8e8 100644 --- a/posts/bug_reporting_rate.mdwn +++ b/posts/bug_reporting_rate.mdwn @@ -13,11 +13,10 @@ plot this, lets only look at bugs ending in 00: 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.] +[For clarity, I'm not showing the R code, but it's available in the source code for this post.] -[[!sweavealike fig=1 echo=0 code=""" +[[!sweavealike width=800 fig=1 echo=0 nooutput=1 results="hide" code=""" require(lattice) -print(getwd()) reporting.rate <- read.table("data/bug_reporting_rate.txt") colnames(reporting.rate) <- c("bug","epoch") reporting.rate <- data.frame(reporting.rate) @@ -33,7 +32,7 @@ print(xyplot(rate~day,reporting.rate[reporting.rate$epoch >= 1041408000,], panel=function(x,y,col,...){ panel.xyplot(x,y,col="cyan",...); panel.loess(x,y,col="red",...);}, - ylim=c(0,0.005), + ylim=c(0,0.004), ylab="Bugs per Second", xlab="Time")) """]]