I was able to install it from r-forge, with a warning that it was build
for 2.15.3. But ...
r <- glmmadmb(sexActs~(1|id), sexpartner)
Error in II[, ii] = II[, ii] + REmat$codes[[i]] :
number of items to replace is not a multiple of replacement length
In addition: Warning messages:
1: In glmmadmb(sexActs ~ (1 | id), sexpartner) :
NAs removed in constructing fixed-effect model frame: you should probably
remove them manually, e.g.
with na.omit()
2: In II[, ii] + REmat$codes[[i]] :
longer object length is not a multiple of shorter object length
Figuring that its missing value handling might be off, I tried removing the
r <- glmmadmb(sexActs~(1|id), sexpartner[!is.na(sexpartner$sexActs),])
Error in system(cmd, intern = intern, wait = wait | intern,
show.output.on.console = wait, :
4: system(cmd, intern = intern, wait = wait | intern, show.output.on.console =
...)
3: shell(cmd, invisible = TRUE, intern = !verbose)
2: run_bin(platform, bin_loc, file_name, cmdoptions, run, rm_binary =
debug = debug, verbose = verbose)
1: glmmadmb(sexActs ~ (1 | id), sexpartner[!is.na(sexpartner$sexActs),
])
Hmmm. Can you give
* the results of sessionInfo()
* the results of trying your command with debug=TRUE ?
* the results of glmmADMB:::get_bin_loc() ?
Ben Bolker