search for: taxihistogram

Displaying 1 result from an estimated 1 matches for "taxihistogram".

2010 Apr 01
2
pdf files in loops
I need to make a bunch of PDF files of histograms. I tried gatelist = unique(mdf$ArrivalGate) for( gate in gatelist) { outfile = paste("../", airport, "/", airport, "taxiHistogram", gate, ".pdf", sep="") pdf(file = outfile, width = 10, height=8, par(lwd=1)) title=paste("Taxi time for Arrival Gate", gate, "by Runway at", airport) gdf = mdf[mdf$ArrivalGate == gate, ] gdf$tt= gdf$TaxiTime/60 histogram(...