gpt4 book ai didi

r - 错误 : unexpected '}' in "}" in R

转载 作者:行者123 更新时间:2023-12-04 10:18:19 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Error: unexpected symbol/input/string constant/numeric constant/SPECIAL in my code

(3 个回答)


6年前关闭。




我正在练习 R 代码。
当我打字

sim.clt <- function (m=100,n=10,p=0.25)
{ z = rbinom(m,n,p)
x = (z-n*p)/sqrt(n*p*(1-p))
hist(x,prob=T,breaks=20,main=paste("n =",n,”p =”,p))
curve(dnorm(x),add=T)
}

它给了我错误:
Error: unexpected input in:

" x = (z-n*p)/sqrt(n*p*(1-p))
hist(x,prob=T,breaks=20,main=paste("n =",n,?
> curve(dnorm(x),add=T)
> }
Error: unexpected '}' in "}"
>

如何修复错误?谢谢

最佳答案

您似乎在代码中使用了 unicode 字符:”p =”,p) .

代替

hist(x,prob=T,breaks=20,main=paste("n =",n,”p =”,p))

经过
hist(x,prob=T,breaks=20,main=paste("n =",n, "p =",p))

关于r - 错误 : unexpected '}' in "}" in R,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23273022/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com