Closed hoski closed 7 years ago
in the function eqsr_Buckland
dimnames(pred) <- list(model = fit$model, ssb = data$ssb)
should change to
dimnames(pred) <- list(model = fit$model, ssb = sort(data$ssb))
In line with how pred is generated.
Should not matter in the simulations that used the parameters, not those predictions.
Fix implemented on development branch and will push to master soon
in the function eqsr_Buckland
dimnames(pred) <- list(model = fit$model, ssb = data$ssb)
should change to
dimnames(pred) <- list(model = fit$model, ssb = sort(data$ssb))
In line with how pred is generated.
Should not matter in the simulations that used the parameters, not those predictions.