当我在R上使用nlm函数时,我不断收到一个问题 NA / Inf替换为最大正值。
我应该担心该错误,还是暂时保留该错误
谢谢
这也是我发生问题的代码块:
negloglike <- function(lam, x)
{ l = -sum(log(dexp(x, lam)))
return(l)
}
xu <- as.matrix(claims)
start <- c(1/120) # a starting value for the minimisation algorithm
mynlm <- nlm(f = negloglike,p=start, x = xu, hessian = T)
mynlm