What will be the output of the following R code?
> nLL <- make.NegLogLik(normals, c(FALSE, 2))
> optimize(nLL, c(-1, 3))$minimum
> nLL <- make.NegLogLik(normals, c(FALSE, 2))
> optimize(nLL, c(-1, 3))$minimumA. 1.217775
B. 2.217775
C. 3
D. empty
Answer: Option D

Join The Discussion