add new scripts
[monitor.git] / statistics / node_history_may0809.r
index 75f3c52..0b6b8f3 100644 (file)
@@ -17,12 +17,18 @@ hbreaks<-unclass(as.POSIXct(dates))
 x_start<-unclass(as.POSIXct("2008-05-07", origin="1970-01-01"))[1]
 x_end  <-unclass(as.POSIXct("2009-06-1", origin="1970-01-01"))[1]
 
-start_image("daily-node-count.png")
-plot(dnc2$start[which(!is.na(dnc2$available))], dnc2$registered[which(!is.na(dnc2$available))], 
-    type='l', col='blue', ylim=c(0,900), xlim=c(x_start, x_end),
-    xlab="Date", ylab="Node Count", axes=F)
-lines(dnc2$start[which(!is.na(dnc2$available))], dnc2$available[which(!is.na(dnc2$available))], type='l', col='red', ylim=c(0,900))
-axis(2)
+par(mfrow=c(1,1))
+par(mai=c(.9,.8,.5,.4))
+start_image("daily-node-count.png", height=400)
+#plot(dnc2$start[which(!is.na(dnc2$available))], dnc2$registered[which(!is.na(dnc2$available))], 
+#    type='l', col='blue', ylim=c(0,1000), xlim=c(x_start, x_end),
+#    xlab="Date", ylab="Node Count", axes=F)
+plot(dnc2$start[which(!is.na(dnc2$available))], dnc2$available[which(!is.na(dnc2$available))], 
+    type='l', col='red', ylim=c(0,600), xlim=c(x_start, x_end),
+    xlab="Date", ylab="Online Node Count", axes=F)
+#lines(dnc2$start[which(!is.na(dnc2$available))], dnc2$available[which(!is.na(dnc2$available))], 
+#type='l', col='red', ylim=c(0,1000))
+axis(2, las=1)
 axis(1, labels=months, at=hbreaks)
 
 
@@ -41,18 +47,24 @@ tstamp_0313 <-abline_at_date("2009-03-13", col='grey70')
 text(x=c(tstamp_0610+(tstamp_0815-tstamp_0610)/2,
          tstamp_0815+(tstamp_0905-tstamp_0815)/2,
          tstamp_0924+(tstamp_1015-tstamp_0924)/2, 
-         tstamp_1015+(tstamp_1105-tstamp_1015)/2, 
+         tstamp_1015+(tstamp_1214-tstamp_1015)/2, 
          tstamp_1214+(tstamp_0223-tstamp_1214)/2, 
          tstamp_0223+(tstamp_0313-tstamp_0223)/2), 
      y=c(0),
      labels=c("Kernel bug", 'fix1', 'fix2', 'fix3', 'Notice bug', 'fix4')) #, 'fix 2', 'fix 3', 'fix 4'))
 
-legend(unclass(as.POSIXct("2009-03-13", origin="1970-01-01"))[1], 200,
+mtext("2008                                 2009", 1,2)
+legend(unclass(as.POSIXct("2009-03-13", origin="1970-01-01"))[1], 100,
         cex=0.7,
-        legend=c("Registered", "Available", 'Kernel Update', 'MyOps Event'),
-        pch=c('-', '-', '-', '-'),
-        col=c('blue', 'red', 'grey20', 'grey70'),
-        lty=c(1, 1, 2, 1), merge=T)
+        legend=c("Online", 'Kernel Update', 'MyOps Event'),
+        pch=c('-', '-', '-'),
+        col=c('red', 'grey20', 'grey70'),
+        lty=c(1, 2, 1), merge=T)
+
+        #legend=c("Registered", "Online", 'Kernel Update', 'MyOps Event'),
+        #pch=c('-', '-', '-', '-'),
+        #col=c('blue', 'red', 'grey20', 'grey70'),
+        #lty=c(1, 1, 2, 1), merge=T)
 
 end_image()