search for: multiplecarol

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

2012 Apr 25
2
Accessing a list
...elements are imp1, imp2, imp3 etc I tried theusing the paste comand in a for loop see the last for loop below. But I keep calling it df but df = imp1 (for the first run). Any ideas on how I can access the elements of the list? Isaac require(Amelia) library(Amelia) data.use <- read.csv("multiplecarol.CSV", header=T) names(data.use) = c("year", "dischargex1", "y", "pressurex2" , "windx3") ts <- c (c(1:12), c(1:12), c(1:12), c(1:12), c(1:12), c(1:12), c(1:12), c(1:6) ) length(ts) data.use = cbind(ts, data.use) #a.out2 <- amelia(data.u...