gpt4 book ai didi

R:使用 nls 解析时出错

转载 作者:行者123 更新时间:2023-12-04 05:49:44 28 4
gpt4 key购买 nike

我正在尝试使用 nls 将高斯峰拟合到 R 中的密度图.当我使用以下等式时:

fit <- nls(den.PA$y~coeffs2 * exp( - ((den.PA$x-coeffs3)/coeffs4)**2 ),
start=list(coeffs2=1.12e-2, coeffs3=1075, coeffs4=2))

我收到以下错误:
Error in parse(text = x) : <text>:2:0: unexpected end of input
1: ~
^

谁能指出我哪里出错了?

最佳答案

试试

fit <- nls(y~coeffs2 * exp( - ((x-coeffs3)/coeffs4)**2 ),data=den.PA,
start=list(coeffs2=1.12e-2, coeffs3=1075, coeffs4=2))

关于R:使用 nls 解析时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10227757/

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