File:Ecan-backlog-Dec31-2009v2.png
Summary
| Description |
English: Canterbury Regional Council daily back log of unprocessed resource consent applications from March 2007 to 30 November 2011 |
| Date | |
| Source |
Own work Canterbury Regional Council (NZ) http://ecan.govt.nz/ records the number of unprocessed applications for resource consents on work days at: http://ecan.govt.nz/services/resource-consents/pages/consent-median-timeframes.aspx It is uploaded to a csv file, b.csv, at Google Docs: http://spreadsheets.google.com/ccc?key=0AsLhMBA3NXL4dFlMY3VmQXQ4YkVyVENLWE9icWlsUHc&hl=en_GB |
| Author | Mrfebruary |
| Other versions |
|
R Script
Assuming you have downloaded "b.csv" to your working directory, the script for the chart is
backlog <- read.csv("b.csv", header=TRUE, sep=",", na.strings="NA", dec=".", strip.white=TRUE)
str(backlog)
attach(backlog)
bxmax<-length(consents)
bymax <- max(consents,na.rm = TRUE)+50
png(file="Ecan-backlog-2010.png",pointsize = 14, width=750, height=500)
par(mar=c(5,5.5,5,1)+0.1,cex.main=1.5,cex.lab=1.2)
plot(consents,xlim=c(0,bxmax), ylim=c(0,bymax),col=2, type="p", main="Canterbury Regional Council Consent Applications Backlog",las=0,xlab="Date", ylab="Unprocessed applications",xaxt="n")
axis(side=1, las=0,at=c(109,293,475,659,840,1024,1205,1389), labels=c("30/06/07", "31/12/07", "30/06/08","31/12/08","30/06/09","31/12/09","30/06/10","31/12/10"))
mtext(side=3,cex=0.75, adj=1, line=0.25,"Up to 31 December 2010")
abline(h=c(500,1000,1500,2000,2500),lwd=2,lty=2,col=1)
abline(v=c(109,293,475,659,840,1024,1389),lwd=2,lty=2,col=1)
box(lwd=3)
dev.off()
Category:Canterbury Regional Council Category:Images with R source code Category:Charts showing data through 2011 Category:English-language chartsLicensing
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
| Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. |