search for: iyear

Displaying 2 results from an estimated 2 matches for "iyear".

Did you mean: year
2009 Mar 23
2
Looping of read.table and assignment
...able_2000 despite the values in the source tables being different: year <- 1951:2000 filelist <- paste("C:\\Documents and Settings\\Data\\table_",year,".txt", sep="") filelist # Code seems to operate successfully up to this point for (i in filelist) { for (iyear in 1951:2000) { assign(paste("table_",iyear, sep=""),read.table(file=i, header=TRUE, sep=",")) noquote(paste("LOADED FILE:",paste("table_",iyear, sep=""),sep=" ")) } }...
2009 Mar 06
1
Interpreting GLM coefficients
....2 + Hours + Fishers + Month, family = poisson(log)) # Fishes, Year, Hours, and Fishers are numeric, Kind.Geographic, Kind.Fishers, Zone.2 and Month are factors with 4, 3, 5 and 12 levels respectively. Model1$coefficients (whith Helmert contrasts): (Intercept) Year IYear^2 Kind.Geographic1 Kind.Geographic2 Kind.Geographic3 Kind.Fishers1 Kind.Fishers2 Zone.21 Zone.22 Zone.23 Zone.24 -4.416915e+02 4.758455e-01 -1.270986e-04 -5.436199e-01 -1.068809e-01 -1.498580e-01 2.958462e-01 1.316589e-01...