Displaying 1 result from an estimated 1 matches for "pressurex2".
Did you mean:
pressure2
2012 Apr 25
2
Accessing a list
...eep 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.use, m = 1000, idvars = "year")
n.times = 100
a.out.time <- amelia(data.use, m = n.times, ts="ts&...