R commands: statusFile <- read.table("events11-olcf.csv", sep="^",header=TRUE) attach(statusFile) palette(rainbow(12)) counts2 <- table(description,name) barplot(counts2,col=rainbow(3),main="CEDPS Data Challenge #3: Event Summary\nSingle user transferring 1,000 200MB files from ALCF to OLCF\n19 May 2010, Run #11",xlab="Event Type",ylab="Count") legend("topright",c("Could not access file","Transfer started or re-started","Transfer succeeded"),pch=19,col=c(rainbow(3)[1],rainbow(3)[3],rainbow(3)[2]),title="Event Description",cex=0.8)