this is my code:
#define likelihood function (including an intercept/constant in the function.) lltobit <- function(b,x,y) { sigma <- b[3] y <- as.matrix(y) x <- as.matrix(x) vecones <- rep(1,nrow(x)) x <- cbind(vecones,x) bx <- x %*% b[1:2] d <- y != 0 llik <- sum(d * ((-1/2)*(log(2*pi) + log(sigma^2) + ((y - bx)/sigma)^2)) + (1-d) * (log(1 - pnorm(bx/sigma)))) return(-llik) } n <- nrow(censored)
where censorship is my data table, including 200 (censored) y values and 200 x values.
Everything works, but when I run the optim command, I get the following error:
tobit1 <- optim(init, lltobit, x=x, y=y, hessian=TRUE, method="BFGS") Error in x %*% b[1:2] : non-conformable arguments
I know what this means, but since x is a 200 by 2 matrix, and b [1: 2] is a 2 by 1 vector, what is wrong? I tried transferring both, as well as a vector of initial values, but nothing works. Can someone help me?
pk_22 source share