R中的“意外符号”

时间:2013-03-03 23:10:45

标签: r

我无法弄清楚为什么我会一直收到此错误

Error: unexpected symbol in:
"  ans <- logver(theta)-logver(est)
  return exp"
> }
Error: unexpected '}' in "}"

这是我的代码:

n <- 27
sum <- 30 + 28 + 26 + 22 + 26 + 27 + 25 + 18 + 34 + 33 + 20 + 25 + 27 + 33 + 31 + 27 + 21 + 30 + 26 + 24 + 30 + 33 + 17 + 28 + 21 + 30 + 27


precision<-0.1                #precision de la rejilla
intervalo<-1                  #parámetro del tamaño del intervalo a graficar

logver <- function (theta) {
  return -27 * theta + log (theta) * sum
}

est<- sum / n;
VR <- function (theta) {              #Verosimilitud Relativa (RV)
  ans <- logver(theta)-logver(est)
  return exp(ans)
}

虽然,如果我删除&#34; exp&#34;它可以正常工作功能调用。

1 个答案:

答案 0 :(得分:10)

return

您没有父母
return(exp(ans))