Eric
The data frame you build containing the stratum-specific cue rates and measures of precision need to have an added column containing the name of the stratum to which the stratum-specific cue rate applies. Here is a toy example using one of the example data
sets shipped with the Distance package:
library(Distance)
data(minke)
mult.list <- list(creation=data.frame(Region.Label=c("North", "South"),rate=2, SE=1),
decay=data.frame(Region.Label=c("North", "South"), rate=c(0.5, 0.2), SE=c(0.1, 0.05)))
print(mult.list)
fitmod <- ds(minke, key="hr", truncation=1.5)
adjust.mult <- dht2(ddf=fitmod, flatfile = minke,
strat_formula = ~Region.Label, multipliers = mult.list)
Note the "mult.list" object contains two tables, each table with two rows (one for each stratum) as well as three columns: "Region.Label" as well as "rate" and "SE".
Let us know what happens when you add a "Region.Label" to your "cue.rate" data frame. If you encounter an error, I'm afraid you might need to wait for issue #205 to be resolved.