Skip to content
Prev 13894 / 20628 Next

Zero cells in contrast matrix problem

at this point, if I were you I would set

options(error=recover)

and debug at the point at which the program stops: this will be at
this point in the code:

if (length(cov) == p) {
      cov <- diag(cov, p)
    } else if (length(cov) != p^2) {
      stop("normal prior covariance of improper length")
    }

so you should be able to print(p) to find out the appropriate size.


On Mon, Oct 26, 2015 at 7:37 AM, Francesco Romano
<francescobryanromano at gmail.com> wrote: