Displaying 1 result from an estimated 1 matches for "monthend".
Did you mean:
contend
2011 Feb 16
1
Timeseries Data Plotted as Monthly Boxplots
...in 1:length(vars) {
# Read in year month start and end dates table & name it
ym.table <- read.csv("/home/kbennett/fews/", stn, var, ".ym.txt", as.is=T,
header=F)
names(ym.table) <- c("yearstart", "monthstart", "yearend", "monthend")
fn <- paste(stn, ".", vars[v], ".FIN", sep="")
if(file.exists(fn)) {
clim.dat <- read.csv(fn, header=F)
names(clim.dat) <- c("cdata")
year.start <- ym.table$yearstart
year.end <- ym.table$yearen...